(value)
| 10925 | return this._ongoingPromise; |
| 10926 | } |
| 10927 | return(value) { |
| 10928 | const returnSteps = () => this._returnSteps(value); |
| 10929 | return this._ongoingPromise ? transformPromiseWith(this._ongoingPromise, returnSteps, returnSteps) : returnSteps(); |
| 10930 | } |
| 10931 | _nextSteps() { |
| 10932 | if (this._isFinished) { |
| 10933 | return Promise.resolve({ value: void 0, done: true }); |
nothing calls this directly
no test coverage detected