Skip to content

Commit b168b24

Browse files
authored
Make deeplyNestedTemplateLiteralIntersection run a little faster (#53401)
1 parent f078ab0 commit b168b24

File tree

2 files changed

+2
-31
lines changed

2 files changed

+2
-31
lines changed

tests/baselines/reference/deeplyNestedTemplateLiteralIntersection.errors.txt

Lines changed: 0 additions & 29 deletions
This file was deleted.

tests/cases/compiler/deeplyNestedTemplateLiteralIntersection.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ type R = `${number}a` & {
77
_thing: true;
88
};
99

10-
type _S = "1" | "2" | "3" | "4" | "5" | "6";
10+
type _S = "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8";
1111

12-
type S = `${_S}${_S}${_S}`;
12+
type S = `${_S}${_S}`;
1313

1414

1515
type T = R | S;

0 commit comments

Comments
 (0)