()
| 10920 | this._preventCancel = preventCancel; |
| 10921 | } |
| 10922 | next() { |
| 10923 | const nextSteps = () => this._nextSteps(); |
| 10924 | this._ongoingPromise = this._ongoingPromise ? transformPromiseWith(this._ongoingPromise, nextSteps, nextSteps) : nextSteps(); |
| 10925 | return this._ongoingPromise; |
| 10926 | } |
| 10927 | return(value) { |
| 10928 | const returnSteps = () => this._returnSteps(value); |
| 10929 | return this._ongoingPromise ? transformPromiseWith(this._ongoingPromise, returnSteps, returnSteps) : returnSteps(); |
nothing calls this directly
no test coverage detected