Skip to content

Commit a25b664

Browse files
author
Andy Hanson
committed
Fix lint error
1 parent 80b7613 commit a25b664

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/checker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18519,7 +18519,7 @@ namespace ts {
1851918519
case SyntaxKind.TypeAliasDeclaration:
1852018520
return true;
1852118521
case SyntaxKind.EnumDeclaration:
18522-
return nodeHasAnyModifiersExcept(node, SyntaxKind.ConstKeyword)
18522+
return nodeHasAnyModifiersExcept(node, SyntaxKind.ConstKeyword);
1852318523
default:
1852418524
Debug.fail();
1852518525
return false;

0 commit comments

Comments
 (0)