(ast: SchemaAST.AST)
| 922 | |
| 923 | /** @internal */ |
| 924 | export function run<T, R>(ast: SchemaAST.AST) { |
| 925 | return runWithCompiler<T, R>(normalCompiler, ast) |
| 926 | } |
| 927 | |
| 928 | function runWithCompiler<T, R>(compiler: Compiler, ast: SchemaAST.AST) { |
| 929 | let parser: Parser |
no test coverage detected