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

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

Issue 1493713004: Revert of Disable non-standard Promise functions in staging (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years 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/flag-definitions.h ('k') | src/js/promise.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 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 "MapIteratorNext", 195 "MapIteratorNext",
196 "MathMax", 196 "MathMax",
197 "MathMin", 197 "MathMin",
198 "MaxSimple", 198 "MaxSimple",
199 "MinSimple", 199 "MinSimple",
200 "ObjectIsFrozen", 200 "ObjectIsFrozen",
201 "ObjectDefineProperty", 201 "ObjectDefineProperty",
202 "ObserveArrayMethods", 202 "ObserveArrayMethods",
203 "ObserveObjectMethods", 203 "ObserveObjectMethods",
204 "OwnPropertyKeys", 204 "OwnPropertyKeys",
205 "PromiseChain",
206 "PromiseDeferred",
207 "PromiseResolved",
208 "SameValueZero", 205 "SameValueZero",
209 "SetIterator", 206 "SetIterator",
210 "SetIteratorNext", 207 "SetIteratorNext",
211 "SetValues", 208 "SetValues",
212 "SymbolToString", 209 "SymbolToString",
213 "ToNameArray", 210 "ToNameArray",
214 "ToPositiveInteger", 211 "ToPositiveInteger",
215 // From runtime: 212 // From runtime:
216 "is_concat_spreadable_symbol", 213 "is_concat_spreadable_symbol",
217 "iterator_symbol", 214 "iterator_symbol",
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
349 346
350 extrasUtils.uncurryThis = function uncurryThis(func) { 347 extrasUtils.uncurryThis = function uncurryThis(func) {
351 return function(thisArg) { 348 return function(thisArg) {
352 return %Apply(func, thisArg, arguments, 1, arguments.length - 1); 349 return %Apply(func, thisArg, arguments, 1, arguments.length - 1);
353 }; 350 };
354 }; 351 };
355 352
356 %ToFastProperties(extrasUtils); 353 %ToFastProperties(extrasUtils);
357 354
358 }) 355 })
OLDNEW
« no previous file with comments | « src/flag-definitions.h ('k') | src/js/promise.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698