Files
coffeescript/test
Chris Connelly 663595ba94 Compile splats in arrays and function calls to ES2015 splats (#4353)
Rather than compiling splats to arrays built using `Array#concat`, splats
are now compiled directly to ES2015 splats, e.g.

    f foo, arguments..., bar

    [ foo, arguments..., bar ]

Which used to be compiled to:

    f.apply(null, [foo].concat(slice.call(arguments), [bar]));

    [foo].concat(slice.call(arguments), [bar]);

Is now compiled to:

    f(foo, ...arguments, bar);

    [ foo, ...arguments, bar ];
2016-11-06 08:30:04 -08:00
..
2011-04-23 13:35:15 -04:00
2015-01-05 15:40:04 -05:00
2016-10-26 08:59:43 -07:00
2011-06-02 01:49:28 -04:00
2016-10-21 09:56:25 -07:00
2016-06-02 09:04:58 +02:00