File tree 4 files changed +8
-2
lines changed
4 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env sh
2
2
. " $( dirname -- " $0 " ) /_/husky.sh"
3
3
4
+ npm run format
4
5
npm run prepublish
5
6
npm run test
Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ generator.execute(`
31
31
- [x] Accept Where in Select Statement
32
32
- [x] Accept Group By in Select Statement
33
33
- [x] Accept Order By in Select Statement
34
+ - [ ] Accept JSON Objects in From Statement
34
35
- [ ] Add Support Aggregates Functions inside Select Statement
35
36
- [ ] Make Order by accept Numeric Expressions and Aggregate Functions
36
37
- [ ] Support sub-queries in Select Statement
Original file line number Diff line number Diff line change 5
5
"main" : " dist/index.js" ,
6
6
"types" : " dist/index.d.ts" ,
7
7
"scripts" : {
8
+ "format" : " npx prettier --write ." ,
8
9
"prepublish" : " tsc" ,
9
10
"prepare" : " husky install" ,
10
11
"test" : " jest"
33
34
"@rollup/plugin-babel" : " ^6.0.2" ,
34
35
"tape" : " ^5.6.3"
35
36
}
36
- }
37
+ }
Original file line number Diff line number Diff line change @@ -8,7 +8,10 @@ export type UnaryToken = TokenType.MINUS | TokenType.NOT
8
8
export class UnaryExpression extends Expression {
9
9
public override variant : Variant = 'operation'
10
10
11
- constructor ( public operator : Token < UnaryToken > , public right : Expression ) {
11
+ constructor (
12
+ public operator : Token < UnaryToken > ,
13
+ public right : Expression
14
+ ) {
12
15
super ( )
13
16
}
14
17
public override accept < R > ( visitor : Visitor < R > ) : R {
You can’t perform that action at this time.
0 commit comments