• arv's avatar
    [es6] Spread in array literals · 9502e91a
    arv authored
    This allows you to put iterables into your array literals
    and the will get spread into the array.
    
      let x = [0, ...range(1, 3)];  // [0, 1, 2]
    
    This is done by treating the array literal up to the first
    spread element as usual, including using a boiler plate
    array, and then appending the remaining expressions and rest
    expressions.
    
    BUG=v8:3018
    LOG=N
    
    Review URL: https://codereview.chromium.org/1125183008
    
    Cr-Commit-Position: refs/heads/master@{#28534}
    9502e91a
Name
Last commit
Last update
..
benchmarks Loading commit data...
cctest Loading commit data...
intl Loading commit data...
js-perf-test Loading commit data...
memory Loading commit data...
message Loading commit data...
mjsunit Loading commit data...
mozilla Loading commit data...
preparser Loading commit data...
promises-aplus Loading commit data...
simdjs Loading commit data...
test262 Loading commit data...
test262-es6 Loading commit data...
unittests Loading commit data...
webkit Loading commit data...