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 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
174 "InnerArrayJoin", | 174 "InnerArrayJoin", |
175 "InnerArrayLastIndexOf", | 175 "InnerArrayLastIndexOf", |
176 "InnerArrayMap", | 176 "InnerArrayMap", |
177 "InnerArrayReduce", | 177 "InnerArrayReduce", |
178 "InnerArrayReduceRight", | 178 "InnerArrayReduceRight", |
179 "InnerArrayReverse", | 179 "InnerArrayReverse", |
180 "InnerArraySome", | 180 "InnerArraySome", |
181 "InnerArraySort", | 181 "InnerArraySort", |
182 "InnerArrayToLocaleString", | 182 "InnerArrayToLocaleString", |
183 "IsNaN", | 183 "IsNaN", |
| 184 "MakeError", |
| 185 "MakeTypeError", |
184 "MapEntries", | 186 "MapEntries", |
185 "MapIterator", | 187 "MapIterator", |
186 "MapIteratorNext", | 188 "MapIteratorNext", |
187 "MathMax", | 189 "MathMax", |
188 "MathMin", | 190 "MathMin", |
189 "MaxSimple", | 191 "MaxSimple", |
190 "MinSimple", | 192 "MinSimple", |
191 "ObjectIsFrozen", | 193 "ObjectIsFrozen", |
192 "ObjectDefineProperty", | 194 "ObjectDefineProperty", |
193 "ObserveArrayMethods", | 195 "ObserveArrayMethods", |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
315 | 317 |
316 extrasUtils.uncurryThis = function uncurryThis(func) { | 318 extrasUtils.uncurryThis = function uncurryThis(func) { |
317 return function(thisArg) { | 319 return function(thisArg) { |
318 return %Apply(func, thisArg, arguments, 1, arguments.length - 1); | 320 return %Apply(func, thisArg, arguments, 1, arguments.length - 1); |
319 }; | 321 }; |
320 }; | 322 }; |
321 | 323 |
322 %ToFastProperties(extrasUtils); | 324 %ToFastProperties(extrasUtils); |
323 | 325 |
324 }) | 326 }) |
OLD | NEW |