* rename colliding let bindings with for loop init * added complex test case to check if loop init collisions were handled correctly * updated test files
8 lines
83 B
JavaScript
8 lines
83 B
JavaScript
for (let a, { b } = {};;) {
|
|
let a, { b } = {};
|
|
|
|
{
|
|
let a, { b } = {};
|
|
}
|
|
}
|