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

Side by Side Diff: src/js/prologue.js

Issue 1410473002: Reland: Use simple/fast inline function version of MinMax in JS (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: after yangs fix possible to use utils.ImportNow in test Created 5 years, 2 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/js/macros.py ('k') | src/js/runtime.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 (function(global, utils, extrasUtils) { 5 (function(global, utils, extrasUtils) {
6 6
7 "use strict"; 7 "use strict";
8 8
9 %CheckIsBootstrapping(); 9 %CheckIsBootstrapping();
10 10
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 "InnerArrayReverse", 179 "InnerArrayReverse",
180 "InnerArraySome", 180 "InnerArraySome",
181 "InnerArraySort", 181 "InnerArraySort",
182 "InnerArrayToLocaleString", 182 "InnerArrayToLocaleString",
183 "IsNaN", 183 "IsNaN",
184 "MapEntries", 184 "MapEntries",
185 "MapIterator", 185 "MapIterator",
186 "MapIteratorNext", 186 "MapIteratorNext",
187 "MathMax", 187 "MathMax",
188 "MathMin", 188 "MathMin",
189 "MaxSimple",
190 "MinSimple",
189 "ObjectIsFrozen", 191 "ObjectIsFrozen",
190 "ObjectDefineProperty", 192 "ObjectDefineProperty",
191 "ObserveArrayMethods", 193 "ObserveArrayMethods",
192 "ObserveObjectMethods", 194 "ObserveObjectMethods",
193 "OwnPropertyKeys", 195 "OwnPropertyKeys",
194 "SameValueZero", 196 "SameValueZero",
195 "SetIterator", 197 "SetIterator",
196 "SetIteratorNext", 198 "SetIteratorNext",
197 "SetValues", 199 "SetValues",
198 "SymbolToString", 200 "SymbolToString",
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
313 315
314 extrasUtils.uncurryThis = function uncurryThis(func) { 316 extrasUtils.uncurryThis = function uncurryThis(func) {
315 return function(thisArg) { 317 return function(thisArg) {
316 return %Apply(func, thisArg, arguments, 1, arguments.length - 1); 318 return %Apply(func, thisArg, arguments, 1, arguments.length - 1);
317 }; 319 };
318 }; 320 };
319 321
320 %ToFastProperties(extrasUtils); 322 %ToFastProperties(extrasUtils);
321 323
322 }) 324 })
OLDNEW
« no previous file with comments | « src/js/macros.py ('k') | src/js/runtime.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698