Skip to content

Commit fd9648a

Browse files
committed
Fix lint
1 parent 2cfc9a3 commit fd9648a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/checker.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5585,7 +5585,7 @@ namespace ts {
55855585
}
55865586
visitedSymbols.set("" + getSymbolId(symbol), true);
55875587
// Only actually serialize symbols within the correct enclosing declaration, otherwise do nothing with the out-of-context symbol
5588-
const skipMembershipCheck = !isPrivate; // We only call this on exported symbols when we know they're in the correct scope
5588+
const skipMembershipCheck = !isPrivate; // We only call this on exported symbols when we know they're in the correct scope
55895589
if (skipMembershipCheck || (!!length(symbol.declarations) && some(symbol.declarations, d => !!findAncestor(d, n => n === enclosingDeclaration)))) {
55905590
const oldContext = context;
55915591
context = cloneNodeBuilderContext(context);

0 commit comments

Comments
 (0)