(offset: number)
| 395 | } |
| 396 | |
| 397 | protected _createCommentToken(offset: number): void { |
| 398 | this.currentToken = { |
| 399 | type: TokenType.COMMENT, |
| 400 | data: '', |
| 401 | location: this.getCurrentLocation(offset), |
| 402 | }; |
| 403 | } |
| 404 | |
| 405 | protected _createDoctypeToken(initialName: string | null): void { |
| 406 | this.currentToken = { |
no test coverage detected