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 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
172 "ArrayToString", | 172 "ArrayToString", |
173 "ErrorToString", | 173 "ErrorToString", |
174 "GetIterator", | 174 "GetIterator", |
175 "GetMethod", | 175 "GetMethod", |
176 "IsNaN", | 176 "IsNaN", |
177 "MakeError", | 177 "MakeError", |
178 "MakeTypeError", | 178 "MakeTypeError", |
179 "MapEntries", | 179 "MapEntries", |
180 "MapIterator", | 180 "MapIterator", |
181 "MapIteratorNext", | 181 "MapIteratorNext", |
182 "MathMax", | |
183 "MathMin", | |
184 "MaxSimple", | 182 "MaxSimple", |
185 "MinSimple", | 183 "MinSimple", |
186 "ObjectDefineProperty", | 184 "ObjectDefineProperty", |
187 "ObserveArrayMethods", | 185 "ObserveArrayMethods", |
188 "ObserveObjectMethods", | 186 "ObserveObjectMethods", |
189 "PromiseChain", | 187 "PromiseChain", |
190 "PromiseDeferred", | 188 "PromiseDeferred", |
191 "PromiseResolved", | 189 "PromiseResolved", |
192 "SameValueZero", | 190 "SameValueZero", |
193 "SetIterator", | 191 "SetIterator", |
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
333 | 331 |
334 extrasUtils.uncurryThis = function uncurryThis(func) { | 332 extrasUtils.uncurryThis = function uncurryThis(func) { |
335 return function(thisArg) { | 333 return function(thisArg) { |
336 return %Apply(func, thisArg, arguments, 1, arguments.length - 1); | 334 return %Apply(func, thisArg, arguments, 1, arguments.length - 1); |
337 }; | 335 }; |
338 }; | 336 }; |
339 | 337 |
340 %ToFastProperties(extrasUtils); | 338 %ToFastProperties(extrasUtils); |
341 | 339 |
342 }) | 340 }) |
OLD | NEW |