* Returns the current BYOB pull request, or `null` if there isn't one.
()
| 11223 | * Returns the current BYOB pull request, or `null` if there isn't one. |
| 11224 | */ |
| 11225 | get byobRequest() { |
| 11226 | if (!IsReadableByteStreamController(this)) { |
| 11227 | throw byteStreamControllerBrandCheckException("byobRequest"); |
| 11228 | } |
| 11229 | return ReadableByteStreamControllerGetBYOBRequest(this); |
| 11230 | } |
| 11231 | /** |
| 11232 | * Returns the desired size to fill the controlled stream's internal queue. It can be negative, if the queue is |
| 11233 | * over-full. An underlying byte source ought to use this information to determine when and how to apply backpressure. |
nothing calls this directly
no test coverage detected