Fix per-iteration bindings in for-loop head#27204
Merged
Conversation
Contributor
Author
|
@weswigham, @sandersn: can you take a look? |
weswigham
reviewed
Sep 27, 2018
| } | ||
|
|
||
| function shouldConvertPartOfIterationStatement(node: Node) { | ||
| return (resolver.getNodeCheckFlags(node) & NodeCheckFlags.ContainsCapturedBlockScopeBinding) !== 0; |
Member
There was a problem hiding this comment.
I dislike a non-TS transform relying on typechecking information to be correct. Especially since this means that in the presence of a before transformer, it's very possible that we'll fail to convert something which needs to be.
Contributor
Author
There was a problem hiding this comment.
We do this in other places, which is the reason we have original pointers for nodes to begin with.
Member
There was a problem hiding this comment.
Geh, you're right. It's actually only a few transforms that can operate without a typechecker available.
weswigham
approved these changes
Sep 27, 2018
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
The ES2015 (and later) specification indicates that a fresh "per-iteration environment" is created in a
for-loop immediately after the initializer is run, and immediately before the incrementor evaluates. This means that block-scoped variables defined in the initializer of aforloop and captured in the initializer, condition, or incrementor need to have the correct closure environment to align with ES2015 semantics.Fixes #17632