We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2cfc9a3 commit fd9648aCopy full SHA for fd9648a
src/compiler/checker.ts
@@ -5585,7 +5585,7 @@ namespace ts {
5585
}
5586
visitedSymbols.set("" + getSymbolId(symbol), true);
5587
// 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
+ const skipMembershipCheck = !isPrivate; // We only call this on exported symbols when we know they're in the correct scope
5589
if (skipMembershipCheck || (!!length(symbol.declarations) && some(symbol.declarations, d => !!findAncestor(d, n => n === enclosingDeclaration)))) {
5590
const oldContext = context;
5591
context = cloneNodeBuilderContext(context);
0 commit comments