mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-15 11:35:42 -06:00
Fix issue with narrowing exported variables
This commit is contained in:
parent
0a25bb58a4
commit
187eaaee7f
@ -7165,12 +7165,11 @@ namespace ts {
|
||||
if (!leftmostIdentifier) {
|
||||
return type;
|
||||
}
|
||||
const leftmostSymbol = getResolvedSymbol(leftmostIdentifier);
|
||||
if (!(leftmostSymbol.flags & SymbolFlags.Variable)) {
|
||||
const declaration = getExportSymbolOfValueSymbolIfExported(getResolvedSymbol(leftmostIdentifier)).valueDeclaration;
|
||||
if (!declaration || declaration.kind !== SyntaxKind.VariableDeclaration && declaration.kind !== SyntaxKind.Parameter && declaration.kind !== SyntaxKind.BindingElement) {
|
||||
return type;
|
||||
}
|
||||
const declaration = getDeclarationOfKind(leftmostSymbol, SyntaxKind.VariableDeclaration);
|
||||
const top = declaration && getDeclarationContainer(declaration);
|
||||
const top = getDeclarationContainer(declaration);
|
||||
const originalType = type;
|
||||
const nodeStack: { node: Node, child: Node }[] = [];
|
||||
let node: Node = reference;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user