mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-25 10:20:49 -06:00
Use union type when binding element has initializer
This commit is contained in:
parent
598ca48c94
commit
a25104e152
@ -2974,7 +2974,9 @@ namespace ts {
|
||||
if (strictNullChecks && declaration.initializer && !(getFalsyFlags(checkExpressionCached(declaration.initializer)) & TypeFlags.Undefined)) {
|
||||
type = getTypeWithFacts(type, TypeFacts.NEUndefined);
|
||||
}
|
||||
return type;
|
||||
return declaration.initializer ?
|
||||
getUnionType([type, checkExpressionCached(declaration.initializer)], /*subtypeReduction*/ true) :
|
||||
type;
|
||||
}
|
||||
|
||||
function getTypeForVariableLikeDeclarationFromJSDocComment(declaration: VariableLikeDeclaration) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user