(controller, context)
| 20 | } |
| 21 | |
| 22 | onRequestStart (controller, context) { |
| 23 | this.#statusCode = 0 |
| 24 | this.#contentType = null |
| 25 | this.#decoder = null |
| 26 | this.#headers = null |
| 27 | this.#body = '' |
| 28 | |
| 29 | return super.onRequestStart(controller, context) |
| 30 | } |
| 31 | |
| 32 | onResponseStart (controller, statusCode, headers, statusMessage) { |
| 33 | this.#statusCode = statusCode |
nothing calls this directly
no test coverage detected