File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -2054,15 +2054,15 @@ namespace ts {
2054
2054
2055
2055
const charAfterHash = codePointAt ( text , pos + 1 ) ;
2056
2056
if ( charAfterHash === CharacterCodes . backslash ) {
2057
- pos ++
2057
+ pos ++ ;
2058
2058
const extendedCookedChar = peekExtendedUnicodeEscape ( ) ;
2059
2059
if ( extendedCookedChar >= 0 && isIdentifierStart ( extendedCookedChar , languageVersion ) ) {
2060
2060
pos += 3 ;
2061
2061
tokenFlags |= TokenFlags . ExtendedUnicodeEscape ;
2062
2062
tokenValue = "#" + scanExtendedUnicodeEscape ( ) + scanIdentifierParts ( ) ;
2063
2063
return token = SyntaxKind . PrivateIdentifier ;
2064
2064
}
2065
-
2065
+
2066
2066
const cookedChar = peekUnicodeEscape ( ) ;
2067
2067
if ( cookedChar >= 0 && isIdentifierStart ( cookedChar , languageVersion ) ) {
2068
2068
pos += 6 ;
You can’t perform that action at this time.
0 commit comments