(value: T)
| 3 | import { compileSQLite } from '../src/sqlite-compiler' |
| 4 | |
| 5 | const val = <T>(value: T) => new IR.Value(value) |
| 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>) => |
no outgoing calls
no test coverage detected