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

Avoid infinite recursion when instantiating circular inline mapped generic tuple type #53522

Conversation

Andarist
Copy link
Contributor

fixes #53458

@typescript-bot typescript-bot added the For Backlog Bug PRs that fix a backlog bug label Mar 27, 2023
Comment on lines +18873 to +18877
// avoid infinite recursion, if the singleton is the type variable itself
// then we'd just get back here with the same arguments from within instantiateMappedType
if (singleton === typeVariable) {
return mappedType;
}
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't really expect this to be the final solution to the problem. I think that it's likely to be possible to craft an extra test case with such an infinite recursion that would involve more than one layer between singleton and typeVariable. I wasn't yet able to manufacture such a test case though.

I'm not sure what's the best strategy to avoid such recursions in the compiler right now - there are different mechanisms like that in the codebase but I wasn't sure which one should be used here.

I imagine that we'd have to track what mapped types are being instantiated, and with what type arguments. This would allow us to bail out at some level. Unless perhaps - this is just a manifestation of the issue that lies elsewhere.

The other test case (with a type alias) works OK because it's able to remap that typeVariable to the alias' own type parameter~ since that alias has .mapper property set. So the mapper available here is the one that was combined here. That is not the case for an inline mapped type though since that has no .mapper

@weswigham weswigham merged commit 7baf6cd into microsoft:main May 24, 2023
@Andarist Andarist deleted the fix/infinite-recursion-when-instantiating-mapped-generic-tuple-type branch May 24, 2023 18:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
For Backlog Bug PRs that fix a backlog bug
Projects
Archived in project
Development

Successfully merging this pull request may close these issues.

Stack overflow error when using inline mapped tuples
3 participants