Skip to content

Commit c0edf6f

Browse files
committed
make lint happy
1 parent e73c941 commit c0edf6f

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
@@ -34319,7 +34319,7 @@ namespace ts {
3431934319
checkClassForDuplicateDeclarations(node);
3432034320

3432134321
// Only check for reserved static identifiers on non-ambient context.
34322-
const nodeInAmbientContext = !!(node.flags & NodeFlags.Ambient)
34322+
const nodeInAmbientContext = !!(node.flags & NodeFlags.Ambient);
3432334323
if (!nodeInAmbientContext) {
3432434324
checkClassForStaticPropertyNameConflicts(node);
3432534325
}

0 commit comments

Comments
 (0)