(type: TokenType, start = this._cursor.clone())
| 492 | } |
| 493 | |
| 494 | private _beginToken(type: TokenType, start = this._cursor.clone()) { |
| 495 | this._currentTokenStart = start; |
| 496 | this._currentTokenType = type; |
| 497 | } |
| 498 | |
| 499 | private _endToken(parts: string[], end?: CharacterCursor): Token { |
| 500 | if (this._currentTokenStart === null) { |
no test coverage detected