(src: string)
| 15 | const grammar = fileContents('./src/preprocessor/preprocessor-grammar.pegjs'); |
| 16 | const parser = peggy.generate(grammar, { cache: true }); |
| 17 | const parse = (src: string) => parser.parse(src) as PreprocessorProgram; |
| 18 | |
| 19 | const debugProgram = (program: string): void => { |
| 20 | debugAst(parse(program)); |
no outgoing calls
no test coverage detected