* fix object rest in array pattern * update test fixtures * early return * use path.stop() at the right path
20 lines
398 B
JavaScript
20 lines
398 B
JavaScript
const [a, [_ref], _ref2, [_ref3, {
|
|
h: [i, _ref4]
|
|
}]] = x;
|
|
const {
|
|
b
|
|
} = _ref,
|
|
c = babelHelpers.objectWithoutProperties(_ref, ["b"]),
|
|
{
|
|
d
|
|
} = _ref2,
|
|
e = babelHelpers.objectWithoutProperties(_ref2, ["d"]),
|
|
{
|
|
f
|
|
} = _ref3,
|
|
g = babelHelpers.objectWithoutProperties(_ref3, ["f"]),
|
|
{
|
|
j
|
|
} = _ref4,
|
|
k = babelHelpers.objectWithoutProperties(_ref4, ["j"]);
|