()
| 379 | } |
| 380 | |
| 381 | scanIdentifier() { |
| 382 | // run to the next non-idPart |
| 383 | while (AsciiIdParts.has(this.next()) |
| 384 | // Note: "while(IdParts[this.next()])" would be enough to make this work. This is just a performance |
| 385 | // tweak, similar to the one in nextToken() |
| 386 | || (this.ch > 0x7F && IdParts[this.ch])) { } // eslint-disable-line no-empty |
| 387 | |
| 388 | return KeywordLookup[this.val = this.raw] || T$Identifier; |
| 389 | } |
| 390 | |
| 391 | scanNumber(isFloat) { |
| 392 | if (isFloat) { |
no test coverage detected