Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(77)

Side by Side Diff: src/harmony-spread.js

Issue 1100673002: Wrap harmony implementations in functions. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/harmony-regexp.js ('k') | src/harmony-tostring.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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;
6 var $spreadIterable;
7
8 (function() {
9
5 'use strict'; 10 'use strict';
6 11
7 function SpreadArguments() { 12 function SpreadArguments() {
8 var count = %_ArgumentsLength(); 13 var count = %_ArgumentsLength();
9 var args = new InternalArray(); 14 var args = new InternalArray();
10 15
11 for (var i = 0; i < count; ++i) { 16 for (var i = 0; i < count; ++i) {
12 var array = %_Arguments(i); 17 var array = %_Arguments(i);
13 var length = array.length; 18 var length = array.length;
14 for (var j = 0; j < length; ++j) { 19 for (var j = 0; j < length; ++j) {
15 args.push(array[j]); 20 args.push(array[j]);
16 } 21 }
17 } 22 }
18 23
19 return args; 24 return args;
20 } 25 }
21 26
22 27
23 function SpreadIterable(collection) { 28 function SpreadIterable(collection) {
24 if (IS_NULL_OR_UNDEFINED(collection)) { 29 if (IS_NULL_OR_UNDEFINED(collection)) {
25 throw MakeTypeError("not_iterable", [collection]); 30 throw MakeTypeError("not_iterable", [collection]);
26 } 31 }
27 32
28 var args = new InternalArray(); 33 var args = new InternalArray();
29 for (var value of collection) { 34 for (var value of collection) {
30 args.push(value); 35 args.push(value);
31 } 36 }
32 return args; 37 return args;
33 } 38 }
39
40 $spreadArguments = SpreadArguments;
41 $spreadIterable = SpreadIterable;
42
43 })();
OLDNEW
« no previous file with comments | « src/harmony-regexp.js ('k') | src/harmony-tostring.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698