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

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

Issue 2126453002: [intrinsic] Drop the %_ValueOf intrinsic. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix noi18n build (narf) Created 4 years, 5 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/messages.js ('k') | src/js/string.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 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 "PromiseThen", 208 "PromiseThen",
209 "RegExpSubclassExecJS", 209 "RegExpSubclassExecJS",
210 "RegExpSubclassMatch", 210 "RegExpSubclassMatch",
211 "RegExpSubclassReplace", 211 "RegExpSubclassReplace",
212 "RegExpSubclassSearch", 212 "RegExpSubclassSearch",
213 "RegExpSubclassSplit", 213 "RegExpSubclassSplit",
214 "RegExpSubclassTest", 214 "RegExpSubclassTest",
215 "SetIterator", 215 "SetIterator",
216 "SetIteratorNext", 216 "SetIteratorNext",
217 "SetValues", 217 "SetValues",
218 "SymbolToString",
219 "ToLocaleLowerCaseI18N", 218 "ToLocaleLowerCaseI18N",
220 "ToLocaleUpperCaseI18N", 219 "ToLocaleUpperCaseI18N",
221 "ToLowerCaseI18N", 220 "ToLowerCaseI18N",
222 "ToPositiveInteger", 221 "ToPositiveInteger",
223 "ToUpperCaseI18N", 222 "ToUpperCaseI18N",
224 // From runtime: 223 // From runtime:
225 "is_concat_spreadable_symbol", 224 "is_concat_spreadable_symbol",
226 "iterator_symbol", 225 "iterator_symbol",
227 "promise_result_symbol", 226 "promise_result_symbol",
228 "promise_state_symbol", 227 "promise_state_symbol",
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
358 357
359 extrasUtils.uncurryThis = function uncurryThis(func) { 358 extrasUtils.uncurryThis = function uncurryThis(func) {
360 return function(thisArg, ...args) { 359 return function(thisArg, ...args) {
361 return %reflect_apply(func, thisArg, args); 360 return %reflect_apply(func, thisArg, args);
362 }; 361 };
363 }; 362 };
364 363
365 %ToFastProperties(extrasUtils); 364 %ToFastProperties(extrasUtils);
366 365
367 }) 366 })
OLDNEW
« no previous file with comments | « src/js/messages.js ('k') | src/js/string.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698