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 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
191 "MakeTypeError", | 191 "MakeTypeError", |
192 "MapEntries", | 192 "MapEntries", |
193 "MapIterator", | 193 "MapIterator", |
194 "MapIteratorNext", | 194 "MapIteratorNext", |
195 "MaxSimple", | 195 "MaxSimple", |
196 "MinSimple", | 196 "MinSimple", |
197 "NumberIsInteger", | 197 "NumberIsInteger", |
198 "ObserveArrayMethods", | 198 "ObserveArrayMethods", |
199 "ObserveObjectMethods", | 199 "ObserveObjectMethods", |
200 "PromiseChain", | 200 "PromiseChain", |
201 "PromiseDeferred", | 201 "PromiseDefer", |
202 "PromiseResolved", | 202 "PromiseAccept", |
203 "RegExpSubclassExecJS", | 203 "RegExpSubclassExecJS", |
204 "RegExpSubclassMatch", | 204 "RegExpSubclassMatch", |
205 "RegExpSubclassReplace", | 205 "RegExpSubclassReplace", |
206 "RegExpSubclassSearch", | 206 "RegExpSubclassSearch", |
207 "RegExpSubclassSplit", | 207 "RegExpSubclassSplit", |
208 "RegExpSubclassTest", | 208 "RegExpSubclassTest", |
209 "SetIterator", | 209 "SetIterator", |
210 "SetIteratorNext", | 210 "SetIteratorNext", |
211 "SetValues", | 211 "SetValues", |
212 "SymbolToString", | 212 "SymbolToString", |
213 "ToPositiveInteger", | 213 "ToPositiveInteger", |
214 // From runtime: | 214 // From runtime: |
215 "is_concat_spreadable_symbol", | 215 "is_concat_spreadable_symbol", |
216 "iterator_symbol", | 216 "iterator_symbol", |
217 "promise_status_symbol", | 217 "promise_result_symbol", |
218 "promise_value_symbol", | 218 "promise_state_symbol", |
219 "object_freeze", | 219 "object_freeze", |
220 "object_is_frozen", | 220 "object_is_frozen", |
221 "object_is_sealed", | 221 "object_is_sealed", |
222 "reflect_apply", | 222 "reflect_apply", |
223 "reflect_construct", | 223 "reflect_construct", |
224 "regexp_flags_symbol", | 224 "regexp_flags_symbol", |
225 "to_string_tag_symbol", | 225 "to_string_tag_symbol", |
226 "object_to_string", | 226 "object_to_string", |
227 "species_symbol", | 227 "species_symbol", |
228 "match_symbol", | 228 "match_symbol", |
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
354 | 354 |
355 extrasUtils.uncurryThis = function uncurryThis(func) { | 355 extrasUtils.uncurryThis = function uncurryThis(func) { |
356 return function(thisArg, ...args) { | 356 return function(thisArg, ...args) { |
357 return %reflect_apply(func, thisArg, args); | 357 return %reflect_apply(func, thisArg, args); |
358 }; | 358 }; |
359 }; | 359 }; |
360 | 360 |
361 %ToFastProperties(extrasUtils); | 361 %ToFastProperties(extrasUtils); |
362 | 362 |
363 }) | 363 }) |
OLD | NEW |