(abort, context)
| 2939 | } |
| 2940 | } |
| 2941 | onRequestStart(abort, context) { |
| 2942 | assert(!this.aborted); |
| 2943 | assert(!this.completed); |
| 2944 | this[kController] = new RequestController(abort); |
| 2945 | if (this.error) { |
| 2946 | this[kController].abort(this.error); |
| 2947 | return; |
| 2948 | } |
| 2949 | this.abort = abort; |
| 2950 | return this[kHandler].onRequestStart(this[kController], context); |
| 2951 | } |
| 2952 | onResponseStarted() { |
| 2953 | return this[kHandler].onResponseStarted?.(); |
| 2954 | } |
nothing calls this directly
no test coverage detected