File tree 1 file changed +3
-2
lines changed
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -22652,8 +22652,9 @@ namespace ts {
22652
22652
// constituent types keyed by the literal types of the property by that name in each constituent type.
22653
22653
function getKeyPropertyName(unionType: UnionType): __String | undefined {
22654
22654
const types = unionType.types;
22655
- // We only construct maps for large unions with non-primitive constituents.
22656
- if (types.length < 10 || getObjectFlags(unionType) & ObjectFlags.PrimitiveUnion) {
22655
+ // We only construct maps for unions with many non-primitive constituents.
22656
+ if (types.length < 10 || getObjectFlags(unionType) & ObjectFlags.PrimitiveUnion ||
22657
+ countWhere(types, t => !!(t.flags & (TypeFlags.Object | TypeFlags.InstantiableNonPrimitive))) < 10) {
22657
22658
return undefined;
22658
22659
}
22659
22660
if (unionType.keyPropertyName === undefined) {
You can’t perform that action at this time.
0 commit comments