()
| 4 | private _promise: Promise<T>; |
| 5 | |
| 6 | constructor() { |
| 7 | this._promise = new Promise((resolve, reject) => { |
| 8 | this._resolve = resolve; |
| 9 | this._reject = reject; |
| 10 | }); |
| 11 | } |
| 12 | |
| 13 | resolve(value: T) { |
| 14 | this._resolve(value); |
nothing calls this directly
no outgoing calls
no test coverage detected