* fix: parameter expression closure should not have access to the declaration inside function body * fix: renameVisitor should skip when a pattern is a scope * address review comments
12 lines
83 B
JavaScript
12 lines
83 B
JavaScript
let z = "outside";
|
|
|
|
function r({
|
|
a: b
|
|
}, {
|
|
[z]: {
|
|
c
|
|
} = z
|
|
}) {
|
|
g(z);
|
|
}
|