()
| 447 | } |
| 448 | |
| 449 | private consumeAtKeyword(): InputTokenObject { |
| 450 | this.nextInputCodePointIndex++; |
| 451 | const name = this.consumeAName(); |
| 452 | if (name) { |
| 453 | return { type: TokenObjectType.atKeyword, text: name.text }; |
| 454 | } |
| 455 | this.nextInputCodePointIndex--; |
| 456 | |
| 457 | return null; |
| 458 | } |
| 459 | |
| 460 | private consumeAComment(): InputToken { |
| 461 | if (this.text[this.nextInputCodePointIndex + 1] === '*') { |
no test coverage detected