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 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
200 "ObjectIsFrozen", | 200 "ObjectIsFrozen", |
201 "ObjectDefineProperty", | 201 "ObjectDefineProperty", |
202 "ObserveArrayMethods", | 202 "ObserveArrayMethods", |
203 "ObserveObjectMethods", | 203 "ObserveObjectMethods", |
204 "OwnPropertyKeys", | 204 "OwnPropertyKeys", |
205 "SameValueZero", | 205 "SameValueZero", |
206 "SetIterator", | 206 "SetIterator", |
207 "SetIteratorNext", | 207 "SetIteratorNext", |
208 "SetValues", | 208 "SetValues", |
209 "SymbolToString", | 209 "SymbolToString", |
210 "ToNameArray", | |
211 "ToPositiveInteger", | 210 "ToPositiveInteger", |
212 // From runtime: | 211 // From runtime: |
213 "is_concat_spreadable_symbol", | 212 "is_concat_spreadable_symbol", |
214 "iterator_symbol", | 213 "iterator_symbol", |
215 "promise_status_symbol", | 214 "promise_status_symbol", |
216 "promise_value_symbol", | 215 "promise_value_symbol", |
217 "reflect_apply", | 216 "reflect_apply", |
218 "reflect_construct", | 217 "reflect_construct", |
219 "regexp_flags_symbol", | 218 "regexp_flags_symbol", |
220 "to_string_tag_symbol", | 219 "to_string_tag_symbol", |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
342 | 341 |
343 extrasUtils.uncurryThis = function uncurryThis(func) { | 342 extrasUtils.uncurryThis = function uncurryThis(func) { |
344 return function(thisArg) { | 343 return function(thisArg) { |
345 return %Apply(func, thisArg, arguments, 1, arguments.length - 1); | 344 return %Apply(func, thisArg, arguments, 1, arguments.length - 1); |
346 }; | 345 }; |
347 }; | 346 }; |
348 | 347 |
349 %ToFastProperties(extrasUtils); | 348 %ToFastProperties(extrasUtils); |
350 | 349 |
351 }) | 350 }) |
OLD | NEW |