(...args)
| 40 | } |
| 41 | |
| 42 | onResponseData (...args) { |
| 43 | assert(!this.#onCompleteCalled) |
| 44 | assert(!this.#onErrorCalled) |
| 45 | |
| 46 | return this.#handler.onResponseData?.(...args) |
| 47 | } |
| 48 | |
| 49 | onResponseEnd (...args) { |
| 50 | assert(!this.#onCompleteCalled) |
nothing calls this directly
no test coverage detected