| 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 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 "MapIterator", | 194 "MapIterator", |
| 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", | |
| 205 "PromiseChain", | 204 "PromiseChain", |
| 206 "PromiseDeferred", | 205 "PromiseDeferred", |
| 207 "PromiseResolved", | 206 "PromiseResolved", |
| 208 "SameValueZero", | 207 "SameValueZero", |
| 209 "SetIterator", | 208 "SetIterator", |
| 210 "SetIteratorNext", | 209 "SetIteratorNext", |
| 211 "SetValues", | 210 "SetValues", |
| 212 "SymbolToString", | 211 "SymbolToString", |
| 213 "ToPositiveInteger", | 212 "ToPositiveInteger", |
| 214 // From runtime: | 213 // From runtime: |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 345 | 344 |
| 346 extrasUtils.uncurryThis = function uncurryThis(func) { | 345 extrasUtils.uncurryThis = function uncurryThis(func) { |
| 347 return function(thisArg) { | 346 return function(thisArg) { |
| 348 return %Apply(func, thisArg, arguments, 1, arguments.length - 1); | 347 return %Apply(func, thisArg, arguments, 1, arguments.length - 1); |
| 349 }; | 348 }; |
| 350 }; | 349 }; |
| 351 | 350 |
| 352 %ToFastProperties(extrasUtils); | 351 %ToFastProperties(extrasUtils); |
| 353 | 352 |
| 354 }) | 353 }) |
| OLD | NEW |