| 11 | * about where in the source string the problem occurred. |
| 12 | */ |
| 13 | class ParseError extends Error { |
| 14 | override name = "ParseError" as const; |
| 15 | position: number | undefined; |
| 16 | // Error start position based on passed-in Token or ParseNode. |
nothing calls this directly
no outgoing calls
no test coverage detected