(name: string, args: Array<IR.BasicExpression>)
| 6 | // Helper to create expression nodes |
| 7 | const ref = (path: Array<string>) => new IR.PropRef(path) |
| 8 | const func = <T = unknown>(name: string, args: Array<IR.BasicExpression>) => |
| 9 | new IR.Func<T>(name, args) |
| 10 | |
| 11 | describe(`SQLite Compiler`, () => { |
| 12 | describe(`where clause compilation`, () => { |
no outgoing calls
no test coverage detected