(controller, err)
| 53 | } |
| 54 | |
| 55 | onResponseError (controller, err) { |
| 56 | if (this.#dumped) { |
| 57 | return |
| 58 | } |
| 59 | |
| 60 | // On network errors before connect, controller will be null |
| 61 | err = this.#controller?.reason ?? err |
| 62 | |
| 63 | super.onResponseError(controller, err) |
| 64 | } |
| 65 | |
| 66 | onResponseData (controller, chunk) { |
| 67 | this.#size = this.#size + chunk.length |
nothing calls this directly
no test coverage detected