(controller)
| 14581 | }); |
| 14582 | } |
| 14583 | function TransformStreamDefaultControllerTerminate(controller) { |
| 14584 | const stream4 = controller._controlledTransformStream; |
| 14585 | const readableController = stream4._readable._readableStreamController; |
| 14586 | ReadableStreamDefaultControllerClose(readableController); |
| 14587 | const error = new TypeError("TransformStream terminated"); |
| 14588 | TransformStreamErrorWritableAndUnblockWrite(stream4, error); |
| 14589 | } |
| 14590 | function TransformStreamDefaultSinkWriteAlgorithm(stream4, chunk) { |
| 14591 | const controller = stream4._transformStreamController; |
| 14592 | if (stream4._backpressure) { |
no test coverage detected
searching dependent graphs…