(controller, trailers)
| 453 | } |
| 454 | |
| 455 | onResponseEnd (controller, trailers) { |
| 456 | this.#writeStream?.end() |
| 457 | this.#handler.onResponseEnd?.(controller, trailers) |
| 458 | } |
| 459 | |
| 460 | onResponseError (controller, err) { |
| 461 | this.#writeStream?.destroy(err) |
nothing calls this directly
no test coverage detected