…for parity with ECMA7. currently we can’t do this: ``` coffeescript x = a: 1 b: 2 c: 3 { a, b, y... } = x # or { a, b, ...y } = x console.log a, b, y # → 1 2 {c:3} ```