(controller)
| 11719 | return controller._byobRequest; |
| 11720 | } |
| 11721 | function ReadableByteStreamControllerGetDesiredSize(controller) { |
| 11722 | const state2 = controller._controlledReadableByteStream._state; |
| 11723 | if (state2 === "errored") { |
| 11724 | return null; |
| 11725 | } |
| 11726 | if (state2 === "closed") { |
| 11727 | return 0; |
| 11728 | } |
| 11729 | return controller._strategyHWM - controller._queueTotalSize; |
| 11730 | } |
| 11731 | function ReadableByteStreamControllerRespond(controller, bytesWritten) { |
| 11732 | const firstDescriptor = controller._pendingPullIntos.peek(); |
| 11733 | const state2 = controller._controlledReadableByteStream._state; |
no outgoing calls
no test coverage detected
searching dependent graphs…