* object rest - fix when destructuring in variables/parameters * fixes + ExportNamedDeclaration support * Account for CatchClause * support ForXStatement * support assignment expression? + PR fixes
16 lines
374 B
JavaScript
16 lines
374 B
JavaScript
try {} catch (_ref) {
|
|
let a34 = babelHelpers.objectWithoutProperties(_ref, []);
|
|
}
|
|
try {} catch (_ref2) {
|
|
let { a1 } = _ref2;
|
|
let b1 = babelHelpers.objectWithoutProperties(_ref2, ["a1"]);
|
|
}
|
|
try {} catch (_ref3) {
|
|
let { a2, b2 } = _ref3;
|
|
let c2 = babelHelpers.objectWithoutProperties(_ref3, ["a2", "b2"]);
|
|
}
|
|
|
|
// Unchanged
|
|
try {} catch (a) {}
|
|
try {} catch ({ b }) {}
|