Uh oh!
There was an error while loading. Please reload this page.
Remove incorrect handling of intersections in getStringMappingType - #53383
Conversation
| // Lowercase<`foo/${Path}`> => `foo/${Lowercase<Path>}` | ||
| declare const lowercasePath: Lowercase<`foo/${Path}`>; | ||
| >lowercasePath : `foo/${Lowercase<string> & { _pathBrand: any; }}` |
There was a problem hiding this comment.
I believe this was wrong in #52836; the intersection here should not be getting lifted out of the string mapping.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
Jake Bailey (jakebailey)
commented
Mar 20, 2023
TypeScript Bot (@typescript-bot) test this |
Heya Jake Bailey (@jakebailey), I've started to run the abridged perf test suite on this PR at 8a6843f. You can monitor the build here. Update: The results are in! |
Heya Jake Bailey (@jakebailey), I've started to run the parallelized Definitely Typed test suite on this PR at 8a6843f. You can monitor the build here. |
Heya Jake Bailey (@jakebailey), I've started to run the diff-based user code test suite on this PR at 8a6843f. You can monitor the build here. Update: The results are in! |
Heya Jake Bailey (@jakebailey), I've started to run the diff-based top-repos suite on this PR at 8a6843f. You can monitor the build here. Update: The results are in! |
Heya Jake Bailey (@jakebailey), I've started to run the extended test suite on this PR at 8a6843f. You can monitor the build here. |
TypeScript Bot (typescript-bot)
commented
Mar 20, 2023
Jake Bailey (@jakebailey) Here are the results of running the user test suite comparing Everything looks good! |
TypeScript Bot (typescript-bot)
commented
Mar 20, 2023
Jake Bailey (@jakebailey) Here they are:Comparison Report - main..53383
System
Hosts
Scenarios
Developer Information: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Jake Bailey (jakebailey)
commented
Mar 20, 2023
Reading the DT logs ahead of time, it hit another npm timeout so this is going to fail to show that the error is fixed, unfortunately, unless I run it again. |
Jake Bailey (jakebailey)
commented
Mar 20, 2023
Heya Jake Bailey (@jakebailey), I've started to run the parallelized Definitely Typed test suite on this PR at 8a6843f. You can monitor the build here. Update: The results are in! |
TypeScript Bot (typescript-bot)
commented
Mar 20, 2023
Jake Bailey (@jakebailey) Here are the results of running the top-repos suite comparing Everything looks good! |
TypeScript Bot (typescript-bot)
commented
Mar 20, 2023
Hey Jake Bailey (@jakebailey), the results of running the DT tests are ready. Main only errors:Package: fragmented-store |
Removes the intended main-only errors, nice. |
Jake Bailey (jakebailey)
commented
Mar 20, 2023
Glad to know that the infra works! 😄 |
Fixes#53382
This line is no longer needed; I believe it's a relic of an earlier version of #52836 which more eagerly evaluated these intersections, but that's not what the final intent of the PR was.