(index: number, line: number, col: number, description: string)
| 56 | } |
| 57 | |
| 58 | throwError(index: number, line: number, col: number, description: string): never { |
| 59 | throw this.createError(index, line, col, description); |
| 60 | } |
| 61 | |
| 62 | tolerateError(index: number, line: number, col: number, description: string) { |
| 63 | const error = this.createError(index, line, col, description); |
nothing calls this directly
no test coverage detected