| 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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 "InnerArrayReverse", | 179 "InnerArrayReverse", |
| 180 "InnerArraySome", | 180 "InnerArraySome", |
| 181 "InnerArraySort", | 181 "InnerArraySort", |
| 182 "InnerArrayToLocaleString", | 182 "InnerArrayToLocaleString", |
| 183 "IsNaN", | 183 "IsNaN", |
| 184 "MapEntries", | 184 "MapEntries", |
| 185 "MapIterator", | 185 "MapIterator", |
| 186 "MapIteratorNext", | 186 "MapIteratorNext", |
| 187 "MathMax", | 187 "MathMax", |
| 188 "MathMin", | 188 "MathMin", |
| 189 "MaxSimple", |
| 190 "MinSimple", |
| 189 "ObjectIsFrozen", | 191 "ObjectIsFrozen", |
| 190 "ObjectDefineProperty", | 192 "ObjectDefineProperty", |
| 191 "ObserveArrayMethods", | 193 "ObserveArrayMethods", |
| 192 "ObserveObjectMethods", | 194 "ObserveObjectMethods", |
| 193 "OwnPropertyKeys", | 195 "OwnPropertyKeys", |
| 194 "SameValueZero", | 196 "SameValueZero", |
| 195 "SetIterator", | 197 "SetIterator", |
| 196 "SetIteratorNext", | 198 "SetIteratorNext", |
| 197 "SetValues", | 199 "SetValues", |
| 198 "SymbolToString", | 200 "SymbolToString", |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 313 | 315 |
| 314 extrasUtils.uncurryThis = function uncurryThis(func) { | 316 extrasUtils.uncurryThis = function uncurryThis(func) { |
| 315 return function(thisArg) { | 317 return function(thisArg) { |
| 316 return %Apply(func, thisArg, arguments, 1, arguments.length - 1); | 318 return %Apply(func, thisArg, arguments, 1, arguments.length - 1); |
| 317 }; | 319 }; |
| 318 }; | 320 }; |
| 319 | 321 |
| 320 %ToFastProperties(extrasUtils); | 322 %ToFastProperties(extrasUtils); |
| 321 | 323 |
| 322 }) | 324 }) |
| OLD | NEW |