* fix object rest in array pattern * update test fixtures * early return * use path.stop() at the right path
7 lines
73 B
JavaScript
7 lines
73 B
JavaScript
const [a, {b, ...c}] = x;
|
|
|
|
let [d, {e, ...f}] = x;
|
|
|
|
[g, {h, ...i}] = x;
|
|
|