* 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
6 lines
64 B
JavaScript
6 lines
64 B
JavaScript
let a = "outside";
|
|
|
|
function q(a, g = (b = a) => b) {
|
|
g(a);
|
|
}
|