(promise)
| 481 | } |
| 482 | |
| 483 | function makePromise(promise) { |
| 484 | promise[PROMISE_ID] = id++; |
| 485 | promise._state = undefined; |
| 486 | promise._result = undefined; |
| 487 | promise._subscribers = []; |
| 488 | } |
| 489 | |
| 490 | function Enumerator(Constructor, input) { |
| 491 | this._instanceConstructor = Constructor; |
no outgoing calls
no test coverage detected