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

Side by Side Diff: src/prologue.js

Issue 1154423014: Implement %TypedArray%.prototype.{reduce,reduceRight} (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: rebase Created 5 years, 6 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
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 (function(global, utils) { 5 (function(global, utils) {
6 6
7 "use strict"; 7 "use strict";
8 8
9 %CheckIsBootstrapping(); 9 %CheckIsBootstrapping();
10 10
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 "ArrayToString", 157 "ArrayToString",
158 "GetIterator", 158 "GetIterator",
159 "GetMethod", 159 "GetMethod",
160 "InnerArrayEvery", 160 "InnerArrayEvery",
161 "InnerArrayFilter", 161 "InnerArrayFilter",
162 "InnerArrayForEach", 162 "InnerArrayForEach",
163 "InnerArrayIndexOf", 163 "InnerArrayIndexOf",
164 "InnerArrayJoin", 164 "InnerArrayJoin",
165 "InnerArrayLastIndexOf", 165 "InnerArrayLastIndexOf",
166 "InnerArrayMap", 166 "InnerArrayMap",
167 "InnerArrayReduce",
168 "InnerArrayReduceRight",
167 "InnerArrayReverse", 169 "InnerArrayReverse",
168 "InnerArraySome", 170 "InnerArraySome",
169 "InnerArraySort", 171 "InnerArraySort",
170 "InnerArrayToLocaleString", 172 "InnerArrayToLocaleString",
171 "IsNaN", 173 "IsNaN",
172 "MathMax", 174 "MathMax",
173 "MathMin", 175 "MathMin",
174 "ObjectIsFrozen", 176 "ObjectIsFrozen",
175 "OwnPropertyKeys", 177 "OwnPropertyKeys",
176 "ToNameArray", 178 "ToNameArray",
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 "InstallConstants", InstallConstants, 222 "InstallConstants", InstallConstants,
221 "InstallFunctions", InstallFunctions, 223 "InstallFunctions", InstallFunctions,
222 "InstallGetter", InstallGetter, 224 "InstallGetter", InstallGetter,
223 "InstallGetterSetter", InstallGetterSetter, 225 "InstallGetterSetter", InstallGetterSetter,
224 "SetUpLockedPrototype", SetUpLockedPrototype, 226 "SetUpLockedPrototype", SetUpLockedPrototype,
225 "PostNatives", PostNatives, 227 "PostNatives", PostNatives,
226 "PostExperimentals", PostExperimentals, 228 "PostExperimentals", PostExperimentals,
227 ]); 229 ]);
228 230
229 }) 231 })
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698