puma icon indicating copy to clipboard operation
puma copied to clipboard

ECMA 6 - Implement Spread Operator

Open pemattio opened this issue 7 years ago • 0 comments

The runtime need to has the visitor for the spread operator.

var str = "foo";
var chars = [ ...str ]; // [ "f", "o", "o" ]

pemattio avatar Jun 11 '18 23:06 pemattio