OLD | NEW |
1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 var $spreadArguments; | 5 var $spreadArguments; |
6 var $spreadIterable; | 6 var $spreadIterable; |
7 | 7 |
8 (function(global, exports) { | 8 (function(global, shared, exports) { |
9 | 9 |
10 'use strict'; | 10 'use strict'; |
11 | 11 |
12 // ------------------------------------------------------------------- | |
13 // Imports | |
14 var InternalArray = exports.InternalArray; | |
15 | |
16 // ------------------------------------------------------------------- | |
17 | |
18 function SpreadArguments() { | 12 function SpreadArguments() { |
19 var count = %_ArgumentsLength(); | 13 var count = %_ArgumentsLength(); |
20 var args = new InternalArray(); | 14 var args = new InternalArray(); |
21 | 15 |
22 for (var i = 0; i < count; ++i) { | 16 for (var i = 0; i < count; ++i) { |
23 var array = %_Arguments(i); | 17 var array = %_Arguments(i); |
24 var length = array.length; | 18 var length = array.length; |
25 for (var j = 0; j < length; ++j) { | 19 for (var j = 0; j < length; ++j) { |
26 args.push(array[j]); | 20 args.push(array[j]); |
27 } | 21 } |
(...skipping 12 matching lines...) Expand all Loading... |
40 for (var value of collection) { | 34 for (var value of collection) { |
41 args.push(value); | 35 args.push(value); |
42 } | 36 } |
43 return args; | 37 return args; |
44 } | 38 } |
45 | 39 |
46 $spreadArguments = SpreadArguments; | 40 $spreadArguments = SpreadArguments; |
47 $spreadIterable = SpreadIterable; | 41 $spreadIterable = SpreadIterable; |
48 | 42 |
49 }) | 43 }) |
OLD | NEW |