(line: number)
| 163 | } |
| 164 | |
| 165 | function createArrayNode(line: number): ArrayNode { |
| 166 | return { kind: 'array', line, items: [] }; |
| 167 | } |
| 168 | |
| 169 | export function parseSyntaxToAst(input: string): ParseResult { |
| 170 | const errors: SyntaxError[] = []; |
no outgoing calls
no test coverage detected
searching dependent graphs…