Fix crash when inferring from tuple with middle rest and trailing variadic elements#63288
Closed
ongjin wants to merge 1 commit intomicrosoft:mainfrom
Closed
Fix crash when inferring from tuple with middle rest and trailing variadic elements#63288ongjin wants to merge 1 commit intomicrosoft:mainfrom
ongjin wants to merge 1 commit intomicrosoft:mainfrom
Conversation
…iadic elements When `getElementTypeOfSliceOfTupleType` returns `undefined` (because the implied arity from the variadic constraint consumes the entire source tuple), the result was passed directly to `inferFromTypes` via a non-null assertion, causing a `TypeError: Cannot read properties of undefined (reading 'aliasSymbol')` crash. Add null checks before calling `inferFromTypes` in both the `[...T, ...rest]` and `[...rest, ...T]` inference branches, consistent with the existing pattern used in the single-rest-element branch. Fixes microsoft#63005
Author
|
@microsoft-github-policy-service agree |
Collaborator
|
With 6.0 out as the final release vehicle for this codebase, we're closing all PRs that don't fit the merge criteria for post-6.0 patches. If you think this was a mistake and this PR fits the post-6.0 patch criteria, please post to the 6.0 iteration issue with details (specifically, which PR and which patch criteria it satisfies). Next steps for PRs:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fixes #63005
When inferring from a tuple type that has middle rest elements and trailing variadic elements (e.g.,
[...(infer C)[], ...infer B extends [any, any, any]]), the compiler crashes withTypeError: Cannot read properties of undefined (reading 'aliasSymbol').Root cause:
getElementTypeOfSliceOfTupleTypereturnsundefinedwhen the implied arity from the variadic constraint consumes the entire source tuple, but the result was passed toinferFromTypesvia a non-null assertion (!).Fix: Add null checks before calling
inferFromTypesin both the[...T, ...rest]and[...rest, ...T]inference branches, consistent with the existing pattern at the single-rest-element branch nearby.Test plan
inferTypesWithFixedTupleExtendsAtVariadicPosition.tsthat previously crashed