(controller, trailers)
| 80 | } |
| 81 | |
| 82 | onResponseEnd (controller, trailers) { |
| 83 | if (this.#dumped) { |
| 84 | return |
| 85 | } |
| 86 | |
| 87 | if (this.#controller.aborted === true) { |
| 88 | super.onResponseError(controller, this.reason) |
| 89 | return |
| 90 | } |
| 91 | |
| 92 | super.onResponseEnd(controller, trailers) |
| 93 | } |
| 94 | } |
| 95 | |
| 96 | function createDumpInterceptor ( |
nothing calls this directly
no test coverage detected