| 52 | } from "../data/codeblocks.js"; |
| 53 | |
| 54 | export class ParserError extends Error { |
| 55 | constructor(message: string, public position: SourcePosition) { |
| 56 | super(message); |
| 57 | this.name = "ParserError"; |
nothing calls this directly
no outgoing calls
no test coverage detected