(type: TokenType, start = this._cursor.clone())
| 507 | } |
| 508 | |
| 509 | private _beginToken(type: TokenType, start = this._cursor.clone()) { |
| 510 | this._currentTokenStart = start; |
| 511 | this._currentTokenType = type; |
| 512 | } |
| 513 | |
| 514 | private _endToken(parts: string[], end?: CharacterCursor): Token { |
| 515 | if (this._currentTokenStart === null) { |
no test coverage detected