| 36 | } |
| 37 | |
| 38 | interface ThenableImpl<T, Result, Err> { |
| 39 | then( |
| 40 | onFulfill: (value: T) => Result, |
| 41 | onReject: (error: Err) => Result |
| 42 | ): void | Wakeable<Result>; |
| 43 | } |
| 44 | |
| 45 | interface UntrackedThenable<T, Result, Err> |
| 46 | extends ThenableImpl<T, Result, Err> { |
nothing calls this directly
no outgoing calls
no test coverage detected