* Errors the controlled readable stream, making all future interactions with it fail with the given error `e`.
(e3 = void 0)
| 11282 | * Errors the controlled readable stream, making all future interactions with it fail with the given error `e`. |
| 11283 | */ |
| 11284 | error(e3 = void 0) { |
| 11285 | if (!IsReadableByteStreamController(this)) { |
| 11286 | throw byteStreamControllerBrandCheckException("error"); |
| 11287 | } |
| 11288 | ReadableByteStreamControllerError(this, e3); |
| 11289 | } |
| 11290 | /** @internal */ |
| 11291 | [CancelSteps](reason) { |
| 11292 | ReadableByteStreamControllerClearPendingPullIntos(this); |
nothing calls this directly
no test coverage detected