(startCharacter, languageVersion)
| 11877 | return token; // Still `SyntaKind.Unknown` |
| 11878 | } |
| 11879 | function scanIdentifier(startCharacter, languageVersion) { |
| 11880 | var ch = startCharacter; |
| 11881 | if (isIdentifierStart(ch, languageVersion)) { |
| 11882 | pos += charSize(ch); |
| 11883 | while (pos < end && isIdentifierPart(ch = codePointAt(text, pos), languageVersion)) |
| 11884 | pos += charSize(ch); |
| 11885 | tokenValue = text.substring(tokenPos, pos); |
| 11886 | if (ch === 92 /* CharacterCodes.backslash */) { |
| 11887 | tokenValue += scanIdentifierParts(); |
| 11888 | } |
| 11889 | return getIdentifierToken(); |
| 11890 | } |
| 11891 | } |
| 11892 | function reScanGreaterToken() { |
| 11893 | if (token === 31 /* SyntaxKind.GreaterThanToken */) { |
| 11894 | if (text.charCodeAt(pos) === 62 /* CharacterCodes.greaterThan */) { |
no test coverage detected
searching dependent graphs…