| 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 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 "MapIteratorNext", | 195 "MapIteratorNext", |
| 196 "MathMax", | 196 "MathMax", |
| 197 "MathMin", | 197 "MathMin", |
| 198 "MaxSimple", | 198 "MaxSimple", |
| 199 "MinSimple", | 199 "MinSimple", |
| 200 "ObjectIsFrozen", | 200 "ObjectIsFrozen", |
| 201 "ObjectDefineProperty", | 201 "ObjectDefineProperty", |
| 202 "ObserveArrayMethods", | 202 "ObserveArrayMethods", |
| 203 "ObserveObjectMethods", | 203 "ObserveObjectMethods", |
| 204 "OwnPropertyKeys", | 204 "OwnPropertyKeys", |
| 205 "PromiseChain", |
| 206 "PromiseDeferred", |
| 207 "PromiseResolved", |
| 205 "SameValueZero", | 208 "SameValueZero", |
| 206 "SetIterator", | 209 "SetIterator", |
| 207 "SetIteratorNext", | 210 "SetIteratorNext", |
| 208 "SetValues", | 211 "SetValues", |
| 209 "SymbolToString", | 212 "SymbolToString", |
| 210 "ToNameArray", | 213 "ToNameArray", |
| 211 "ToPositiveInteger", | 214 "ToPositiveInteger", |
| 212 // From runtime: | 215 // From runtime: |
| 213 "is_concat_spreadable_symbol", | 216 "is_concat_spreadable_symbol", |
| 214 "iterator_symbol", | 217 "iterator_symbol", |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 346 | 349 |
| 347 extrasUtils.uncurryThis = function uncurryThis(func) { | 350 extrasUtils.uncurryThis = function uncurryThis(func) { |
| 348 return function(thisArg) { | 351 return function(thisArg) { |
| 349 return %Apply(func, thisArg, arguments, 1, arguments.length - 1); | 352 return %Apply(func, thisArg, arguments, 1, arguments.length - 1); |
| 350 }; | 353 }; |
| 351 }; | 354 }; |
| 352 | 355 |
| 353 %ToFastProperties(extrasUtils); | 356 %ToFastProperties(extrasUtils); |
| 354 | 357 |
| 355 }) | 358 }) |
| OLD | NEW |