(stream4, error)
| 12389 | } |
| 12390 | } |
| 12391 | function WritableStreamFinishInFlightCloseWithError(stream4, error) { |
| 12392 | stream4._inFlightCloseRequest._reject(error); |
| 12393 | stream4._inFlightCloseRequest = void 0; |
| 12394 | if (stream4._pendingAbortRequest !== void 0) { |
| 12395 | stream4._pendingAbortRequest._reject(error); |
| 12396 | stream4._pendingAbortRequest = void 0; |
| 12397 | } |
| 12398 | WritableStreamDealWithRejection(stream4, error); |
| 12399 | } |
| 12400 | function WritableStreamCloseQueuedOrInFlight(stream4) { |
| 12401 | if (stream4._closeRequest === void 0 && stream4._inFlightCloseRequest === void 0) { |
| 12402 | return false; |
no test coverage detected
searching dependent graphs…