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

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

Issue 1812673005: Use ICU case conversion/transliterator for case conversion behind a flag (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Yang's comment addressed - return right away for no-change Created 4 years, 7 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, extrasUtils) { 5 (function(global, utils, extrasUtils) {
6 6
7 "use strict"; 7 "use strict";
8 8
9 %CheckIsBootstrapping(); 9 %CheckIsBootstrapping();
10 10
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 "RegExpSubclassExecJS", 201 "RegExpSubclassExecJS",
202 "RegExpSubclassMatch", 202 "RegExpSubclassMatch",
203 "RegExpSubclassReplace", 203 "RegExpSubclassReplace",
204 "RegExpSubclassSearch", 204 "RegExpSubclassSearch",
205 "RegExpSubclassSplit", 205 "RegExpSubclassSplit",
206 "RegExpSubclassTest", 206 "RegExpSubclassTest",
207 "SetIterator", 207 "SetIterator",
208 "SetIteratorNext", 208 "SetIteratorNext",
209 "SetValues", 209 "SetValues",
210 "SymbolToString", 210 "SymbolToString",
211 "ToLocaleLowerCaseI18N",
212 "ToLocaleUpperCaseI18N",
213 "ToLowerCaseI18N",
211 "ToPositiveInteger", 214 "ToPositiveInteger",
215 "ToUpperCaseI18N",
212 // From runtime: 216 // From runtime:
213 "is_concat_spreadable_symbol", 217 "is_concat_spreadable_symbol",
214 "iterator_symbol", 218 "iterator_symbol",
215 "promise_result_symbol", 219 "promise_result_symbol",
216 "promise_state_symbol", 220 "promise_state_symbol",
217 "object_freeze", 221 "object_freeze",
218 "object_is_frozen", 222 "object_is_frozen",
219 "object_is_sealed", 223 "object_is_sealed",
220 "reflect_apply", 224 "reflect_apply",
221 "reflect_construct", 225 "reflect_construct",
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
352 356
353 extrasUtils.uncurryThis = function uncurryThis(func) { 357 extrasUtils.uncurryThis = function uncurryThis(func) {
354 return function(thisArg, ...args) { 358 return function(thisArg, ...args) {
355 return %reflect_apply(func, thisArg, args); 359 return %reflect_apply(func, thisArg, args);
356 }; 360 };
357 }; 361 };
358 362
359 %ToFastProperties(extrasUtils); 363 %ToFastProperties(extrasUtils);
360 364
361 }) 365 })
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698