| 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 22 matching lines...) Expand all Loading... |
| 33 // Core functionality. | 33 // Core functionality. |
| 34 | 34 |
| 35 // Status values: 0 = pending, +1 = resolved, -1 = rejected | 35 // Status values: 0 = pending, +1 = resolved, -1 = rejected |
| 36 var promiseStatus = GLOBAL_PRIVATE("Promise#status"); | 36 var promiseStatus = GLOBAL_PRIVATE("Promise#status"); |
| 37 var promiseValue = GLOBAL_PRIVATE("Promise#value"); | 37 var promiseValue = GLOBAL_PRIVATE("Promise#value"); |
| 38 var promiseOnResolve = GLOBAL_PRIVATE("Promise#onResolve"); | 38 var promiseOnResolve = GLOBAL_PRIVATE("Promise#onResolve"); |
| 39 var promiseOnReject = GLOBAL_PRIVATE("Promise#onReject"); | 39 var promiseOnReject = GLOBAL_PRIVATE("Promise#onReject"); |
| 40 var promiseRaw = GLOBAL_PRIVATE("Promise#raw"); | 40 var promiseRaw = GLOBAL_PRIVATE("Promise#raw"); |
| 41 | 41 |
| 42 function IsPromise(x) { | 42 function IsPromise(x) { |
| 43 return IS_SPEC_OBJECT(x) && %HasLocalProperty(x, promiseStatus); | 43 return IS_SPEC_OBJECT(x) && HAS_PRIVATE(x, promiseStatus); |
| 44 } | 44 } |
| 45 | 45 |
| 46 function PromiseSet(promise, status, value, onResolve, onReject) { | 46 function PromiseSet(promise, status, value, onResolve, onReject) { |
| 47 SET_PRIVATE(promise, promiseStatus, status); | 47 SET_PRIVATE(promise, promiseStatus, status); |
| 48 SET_PRIVATE(promise, promiseValue, value); | 48 SET_PRIVATE(promise, promiseValue, value); |
| 49 SET_PRIVATE(promise, promiseOnResolve, onResolve); | 49 SET_PRIVATE(promise, promiseOnResolve, onResolve); |
| 50 SET_PRIVATE(promise, promiseOnReject, onReject); | 50 SET_PRIVATE(promise, promiseOnReject, onReject); |
| 51 return promise; | 51 return promise; |
| 52 } | 52 } |
| 53 | 53 |
| (...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 294 "resolve", PromiseCast | 294 "resolve", PromiseCast |
| 295 ]); | 295 ]); |
| 296 InstallFunctions($Promise.prototype, DONT_ENUM, [ | 296 InstallFunctions($Promise.prototype, DONT_ENUM, [ |
| 297 "chain", PromiseChain, | 297 "chain", PromiseChain, |
| 298 "then", PromiseThen, | 298 "then", PromiseThen, |
| 299 "catch", PromiseCatch | 299 "catch", PromiseCatch |
| 300 ]); | 300 ]); |
| 301 } | 301 } |
| 302 | 302 |
| 303 SetUpPromise(); | 303 SetUpPromise(); |
| OLD | NEW |