( expr: BasicExpression, )
| 98 | * Compiles a single-row expression into an optimized evaluator function. |
| 99 | */ |
| 100 | export function compileSingleRowExpression( |
| 101 | expr: BasicExpression, |
| 102 | ): CompiledSingleRowExpression { |
| 103 | const compiledFn = compileExpressionInternal(expr, true) |
| 104 | return compiledFn as CompiledSingleRowExpression |
| 105 | } |
| 106 | |
| 107 | /** |
| 108 | * Internal unified expression compiler that handles both namespaced and single-row evaluation |
no test coverage detected