Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix main baselines #57962

Merged
merged 1 commit into from
Mar 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions tests/baselines/reference/genericFunctionInference1.types
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
=== Performance Stats ===
Subtype cache: 100 / 100 (nearest 100)
Assignability cache: 200 / 200 (nearest 100)
Type Count: 1,200 / 1,300 (nearest 100)
Instantiation count: 1,500 / 1,500 (nearest 500)
Symbol count: 32,000 / 32,000 (nearest 500)
Type Count: 1,300 / 1,300 (nearest 100)
Instantiation count: 2,000 / 2,500 (nearest 500)
Symbol count: 32,500 / 33,000 (nearest 500)

=== genericFunctionInference1.ts ===
declare function pipe<A extends any[], B>(ab: (...args: A) => B): (...args: A) => B;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ declare function wrap<X>(x: X): { x: X };
>x : X

declare function call<A extends unknown[], T>(x: { x: (...args: A) => T }, ...args: A): T;
>call : <A extends unknown[], T>(x: { x: (...args: A) => T; }, ...args: A) => T
>call : <A extends unknown[], T>(x: { x: (...args: A) => T;}, ...args: A) => T
>x : { x: (...args: A) => T; }
>x : (...args: A) => T
>args : A
Expand Down
2 changes: 1 addition & 1 deletion tests/baselines/reference/promisePermutations.types
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Subtype cache: 400 / 400 (nearest 100)
Assignability cache: 200 / 200 (nearest 100)
Type Count: 1,700 / 1,800 (nearest 100)
Instantiation count: 6,500 / 6,500 (nearest 500)
Instantiation count: 7,000 / 7,000 (nearest 500)
Symbol count: 28,000 / 28,000 (nearest 500)

=== promisePermutations.ts ===
Expand Down
2 changes: 1 addition & 1 deletion tests/baselines/reference/promisePermutations2.types
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Subtype cache: 200 / 200 (nearest 100)
Assignability cache: 200 / 200 (nearest 100)
Type Count: 800 / 900 (nearest 100)
Instantiation count: 2,500 / 2,500 (nearest 500)
Instantiation count: 2,500 / 3,000 (nearest 500)
Symbol count: 27,000 / 27,000 (nearest 500)

=== promisePermutations2.ts ===
Expand Down
2 changes: 1 addition & 1 deletion tests/baselines/reference/promisePermutations3.types
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Subtype cache: 300 / 300 (nearest 100)
Assignability cache: 200 / 200 (nearest 100)
Type Count: 1,500 / 1,500 (nearest 100)
Instantiation count: 5,000 / 5,500 (nearest 500)
Instantiation count: 5,500 / 6,000 (nearest 500)
Symbol count: 27,500 / 27,500 (nearest 500)

=== promisePermutations3.ts ===
Expand Down
2 changes: 1 addition & 1 deletion tests/baselines/reference/promiseType.types
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
=== Performance Stats ===
Assignability cache: 200 / 200 (nearest 100)
Type Count: 700 / 700 (nearest 100)
Instantiation count: 1,500 / 1,500 (nearest 500)
Instantiation count: 2,000 / 2,000 (nearest 500)
Symbol count: 28,000 / 28,000 (nearest 500)

=== promiseType.ts ===
Expand Down
2 changes: 1 addition & 1 deletion tests/baselines/reference/propTypeValidatorInference.types
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
=== Performance Stats ===
Assignability cache: 100 / 100 (nearest 100)
Type Count: 400 / 400 (nearest 100)
Instantiation count: 3,000 / 3,000 (nearest 500)
Instantiation count: 3,000 / 3,500 (nearest 500)
Symbol count: 25,500 / 25,500 (nearest 500)

=== node_modules/prop-types/index.d.ts ===
Expand Down
4 changes: 2 additions & 2 deletions tests/baselines/reference/recursiveConditionalTypes.types
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
=== Performance Stats ===
Identity cache: 100 / 100 (nearest 100)
Assignability cache: 300 / 300 (nearest 100)
Type Count: 507,600 / 507,900 (nearest 100)
Instantiation count: 524,000 / 524,500 (nearest 500)
Type Count: 507,700 / 507,900 (nearest 100)
Instantiation count: 524,500 / 524,500 (nearest 500)
Symbol count: 1,072,500 / 1,073,000 (nearest 500)

=== recursiveConditionalTypes.ts ===
Expand Down