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 {
20542054
20552055 const charAfterHash = codePointAt ( text , pos + 1 ) ;
20562056 if ( charAfterHash === CharacterCodes . backslash ) {
2057- pos ++
2057+ pos ++ ;
20582058 const extendedCookedChar = peekExtendedUnicodeEscape ( ) ;
20592059 if ( extendedCookedChar >= 0 && isIdentifierStart ( extendedCookedChar , languageVersion ) ) {
20602060 pos += 3 ;
20612061 tokenFlags |= TokenFlags . ExtendedUnicodeEscape ;
20622062 tokenValue = "#" + scanExtendedUnicodeEscape ( ) + scanIdentifierParts ( ) ;
20632063 return token = SyntaxKind . PrivateIdentifier ;
20642064 }
2065-
2065+
20662066 const cookedChar = peekUnicodeEscape ( ) ;
20672067 if ( cookedChar >= 0 && isIdentifierStart ( cookedChar , languageVersion ) ) {
20682068 pos += 6 ;
You can’t perform that action at this time.
0 commit comments