Skip to content

Commit 9e2fc16

Browse files
authored
Improve perf of unions with many primitives (#45220)
1 parent 44deb84 commit 9e2fc16

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/compiler/checker.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -22652,8 +22652,9 @@ namespace ts {
2265222652
// constituent types keyed by the literal types of the property by that name in each constituent type.
2265322653
function getKeyPropertyName(unionType: UnionType): __String | undefined {
2265422654
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) {
2265722658
return undefined;
2265822659
}
2265922660
if (unionType.keyPropertyName === undefined) {

0 commit comments

Comments
 (0)