Invalid this emit in contextual object #7232
Merged
+123
−0
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.
Fixes #7212
When we check context sensitive functions inside an object literal we short-circuit checking of the return type because it might be circular. But the short-circuit means that the checker doesn't go back to check the function later (because it's in a call to checkExpressionCached), which means that this doesn't get marked as needing the _this = this emit.
Thanks @vladima for the psychic debugging here. We came up with two fixes with two variants:
1a. Only call checkNodeDeferred in checkFunctionExpressionOrObjectLiteralMethod if the node hasn't already been added to the deferred node list. Maybe using a nodeflags or something.
2a. Only call checkExpression when the contextual mapper is identityMapper.
This PR goes with (1) since it's the simplest. @ahejlsberg, can you take a look?