(token?, message?)
| 242 | } |
| 243 | |
| 244 | throwUnexpectedToken(token?, message?): never { |
| 245 | throw this.unexpectedTokenError(token, message); |
| 246 | } |
| 247 | |
| 248 | tolerateUnexpectedToken(token?, message?) { |
| 249 | this.errorHandler.tolerate(this.unexpectedTokenError(token, message)); |
no test coverage detected