(name: string, args: Array<any>)
| 15 | // Helper to create a function expression |
| 16 | |
| 17 | function func(name: string, args: Array<any>): IR.BasicExpression<boolean> { |
| 18 | return { type: `func`, name, args } as IR.BasicExpression<boolean> |
| 19 | } |
| 20 | |
| 21 | describe(`sql-compiler`, () => { |
| 22 | describe(`compileSQL`, () => { |