* Fix scope of function body when var redeclares param * Fix empty var declarations * Apply suggestions
6 lines
46 B
JavaScript
6 lines
46 B
JavaScript
function foo(a = 2) {
|
|
function a() {
|
|
|
|
}
|
|
}
|