(index: number, line: number, col: number, description: string)
| 60 | } |
| 61 | |
| 62 | tolerateError(index: number, line: number, col: number, description: string) { |
| 63 | const error = this.createError(index, line, col, description); |
| 64 | if (this.tolerant) { |
| 65 | this.recordError(error); |
| 66 | } else { |
| 67 | throw error; |
| 68 | } |
| 69 | } |
| 70 | |
| 71 | } |
nothing calls this directly
no test coverage detected