(controller, trailers)
| 439 | } |
| 440 | |
| 441 | onResponseEnd (controller, trailers) { |
| 442 | this.#writeStream?.end() |
| 443 | this.#handler.onResponseEnd?.(controller, trailers) |
| 444 | } |
| 445 | |
| 446 | onResponseError (controller, err) { |
| 447 | this.#writeStream?.destroy(err) |
nothing calls this directly
no test coverage detected