We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3d111a commit 8ee4d00Copy full SHA for 8ee4d00
src/compiler/checker.ts
@@ -7298,7 +7298,7 @@ export function createTypeChecker(host: TypeCheckerHost): TypeChecker {
7298
// skip late bound props that contribute to the index signature - they'll be created by property creation anyway
7299
return !hasLateBindableName(e);
7300
});
7301
- return map(indexInfo.components, e => {
+ return map(newComponents, e => {
7302
// Still need to track visibility even if we've already checked it to paint references as used
7303
trackComputedName(e.name.expression as EntityNameExpression, context.enclosingDeclaration, context);
7304
return setTextRange(
0 commit comments