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

rename colliding let bindings with for loop init #8937

Merged
merged 3 commits into from Oct 31, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
15 changes: 13 additions & 2 deletions packages/babel-plugin-transform-block-scoping/src/index.js
Expand Up @@ -460,7 +460,9 @@ class BlockScoping {

remap() {
const letRefs = this.letReferences;
const outsideLetRefs = this.outsideLetReferences;
const scope = this.scope;
const blockPathScope = this.blockPath.scope;

// alright, so since we aren't wrapping this block in a closure
// we have to check if any of our let variables collide with
Expand All @@ -481,11 +483,20 @@ class BlockScoping {
scope.rename(ref.name);
}

if (this.blockPath.scope.hasOwnBinding(key)) {
this.blockPath.scope.rename(ref.name);
if (blockPathScope.hasOwnBinding(key)) {
blockPathScope.rename(ref.name);
}
}
}

for (const key in outsideLetRefs) {
const ref = letRefs[key];
// check for collisions with a for loop's init variable and the enclosing scope's bindings
// https://github.com/babel/babel/issues/8498
if (isInLoop(this.blockPath) && blockPathScope.hasOwnBinding(key)) {
blockPathScope.rename(ref.name);
}
}
}

wrapClosure() {
Expand Down
@@ -0,0 +1,7 @@
for (let a, { b } = {};;) {
let a, { b } = {};

{
let a, { b } = {};
}
}
@@ -0,0 +1,3 @@
{
"plugins": ["transform-destructuring", "transform-block-scoping"]
}
@@ -0,0 +1,11 @@
for (var a, _ref = {}, b = _ref.b;;) {
var _a = void 0,
_ref2 = {},
_b = _ref2.b;

{
var _a2 = void 0,
_ref3 = {},
_b2 = _ref3.b;
}
}
@@ -0,0 +1,8 @@
for (let i = 0; i < 3; i++) {
let i = 'abc';
console.log(i);

{
let i = "hello";
}
}
@@ -0,0 +1,7 @@
for (var i = 0; i < 3; i++) {
var _i = 'abc';
console.log(_i);
{
var _i2 = "hello";
}
}