* object rest - fix when destructuring in variables/parameters * fixes + ExportNamedDeclaration support * Account for CatchClause * support ForXStatement * support assignment expression? + PR fixes
9 lines
203 B
JavaScript
9 lines
203 B
JavaScript
function a({ ...a34 }) {}
|
|
function a2({a1, ...b1}) {}
|
|
function a3({a2, b2, ...c2}) {}
|
|
function a4({a3, ...c3}, {a5, ...c5}) {}
|
|
// Unchanged
|
|
function b(a) {}
|
|
function b2(a, ...b) {}
|
|
function b3({ b }) {}
|