| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 }) |
| OLD | NEW |