(node: ASTNode, ctx: MaterializeCtx)
| 183 | * Returns ASTNode — structure preserved for runtime evaluation by the evaluator. |
| 184 | */ |
| 185 | export function materializeExpr(node: ASTNode, ctx: MaterializeCtx): ASTNode { |
| 186 | return materializeExprInternal(node, ctx, new Set()); |
| 187 | } |
| 188 | |
| 189 | /** |
| 190 | * Schema-aware materialization: resolves refs, normalizes catalog component args |
no test coverage detected