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 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
184 "AddBoundMethod", | 184 "AddBoundMethod", |
185 "ArrayToString", | 185 "ArrayToString", |
186 "AsyncFunctionNext", | 186 "AsyncFunctionNext", |
187 "AsyncFunctionThrow", | 187 "AsyncFunctionThrow", |
188 "GetIterator", | 188 "GetIterator", |
189 "GetMethod", | 189 "GetMethod", |
190 "GlobalPromise", | 190 "GlobalPromise", |
191 "IntlParseDate", | 191 "IntlParseDate", |
192 "IntlParseNumber", | 192 "IntlParseNumber", |
193 "IsNaN", | 193 "IsNaN", |
| 194 "MicrotaskRun", |
| 195 "MicrotaskEnq", |
194 "MapEntries", | 196 "MapEntries", |
195 "MapIterator", | 197 "MapIterator", |
196 "MapIteratorNext", | 198 "MapIteratorNext", |
197 "MaxSimple", | 199 "MaxSimple", |
198 "MinSimple", | 200 "MinSimple", |
199 "NewPromiseCapability", | 201 "NewPromiseCapability", |
200 "NumberIsInteger", | 202 "NumberIsInteger", |
201 "PerformPromiseThen", | 203 "PerformPromiseThen", |
202 "PromiseChain", | 204 "PromiseChain", |
203 "PromiseDefer", | 205 "PromiseDefer", |
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
355 | 357 |
356 extrasUtils.uncurryThis = function uncurryThis(func) { | 358 extrasUtils.uncurryThis = function uncurryThis(func) { |
357 return function(thisArg, ...args) { | 359 return function(thisArg, ...args) { |
358 return %reflect_apply(func, thisArg, args); | 360 return %reflect_apply(func, thisArg, args); |
359 }; | 361 }; |
360 }; | 362 }; |
361 | 363 |
362 %ToFastProperties(extrasUtils); | 364 %ToFastProperties(extrasUtils); |
363 | 365 |
364 }) | 366 }) |
OLD | NEW |