Henry Zhu 5e0508d57c object rest - fix when destructuring in variables/parameters (#4755)
* object rest - fix when destructuring in variables/parameters

* fixes + ExportNamedDeclaration support

* Account for CatchClause

* support ForXStatement

* support assignment expression? + PR fixes
2016-11-15 11:31:03 -05:00

6 lines
95 B
JavaScript

({ a } = c);
var _c = c;
({ a } = _c);
b = babelHelpers.objectWithoutProperties(_c, ["a"])
_c;