Skip to content

Commit 82d0fc9

Browse files
Fix lints.
1 parent 83b3ea3 commit 82d0fc9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/compiler/scanner.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)