| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 "use strict"; | 5 "use strict"; |
| 6 | 6 |
| 7 // This file relies on the fact that the following declaration has been made | 7 // This file relies on the fact that the following declaration has been made |
| 8 // in runtime.js: | 8 // in runtime.js: |
| 9 // var $Object = global.Object | 9 // var $Object = global.Object |
| 10 // var $WeakMap = global.WeakMap | 10 // var $WeakMap = global.WeakMap |
| (...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 358 PromiseHasUserDefinedRejectHandler = | 358 PromiseHasUserDefinedRejectHandler = |
| 359 function PromiseHasUserDefinedRejectHandler() { | 359 function PromiseHasUserDefinedRejectHandler() { |
| 360 return PromiseHasUserDefinedRejectHandlerRecursive(this); | 360 return PromiseHasUserDefinedRejectHandlerRecursive(this); |
| 361 }; | 361 }; |
| 362 | 362 |
| 363 // ------------------------------------------------------------------- | 363 // ------------------------------------------------------------------- |
| 364 // Install exported functions. | 364 // Install exported functions. |
| 365 | 365 |
| 366 %CheckIsBootstrapping(); | 366 %CheckIsBootstrapping(); |
| 367 %AddNamedProperty(global, 'Promise', $Promise, DONT_ENUM); | 367 %AddNamedProperty(global, 'Promise', $Promise, DONT_ENUM); |
| 368 %AddNamedProperty( |
| 369 $Promise.prototype, symbolToStringTag, "Promise", DONT_ENUM | READ_ONLY); |
| 368 InstallFunctions($Promise, DONT_ENUM, [ | 370 InstallFunctions($Promise, DONT_ENUM, [ |
| 369 "defer", PromiseDeferred, | 371 "defer", PromiseDeferred, |
| 370 "accept", PromiseResolved, | 372 "accept", PromiseResolved, |
| 371 "reject", PromiseRejected, | 373 "reject", PromiseRejected, |
| 372 "all", PromiseAll, | 374 "all", PromiseAll, |
| 373 "race", PromiseOne, | 375 "race", PromiseOne, |
| 374 "resolve", PromiseCast | 376 "resolve", PromiseCast |
| 375 ]); | 377 ]); |
| 376 InstallFunctions($Promise.prototype, DONT_ENUM, [ | 378 InstallFunctions($Promise.prototype, DONT_ENUM, [ |
| 377 "chain", PromiseChain, | 379 "chain", PromiseChain, |
| 378 "then", PromiseThen, | 380 "then", PromiseThen, |
| 379 "catch", PromiseCatch | 381 "catch", PromiseCatch |
| 380 ]); | 382 ]); |
| 381 | 383 |
| 382 })(); | 384 })(); |
| OLD | NEW |