(pullIntoDescriptor)
| 11411 | } |
| 11412 | } |
| 11413 | function ReadableByteStreamControllerConvertPullIntoDescriptor(pullIntoDescriptor) { |
| 11414 | const bytesFilled = pullIntoDescriptor.bytesFilled; |
| 11415 | const elementSize = pullIntoDescriptor.elementSize; |
| 11416 | return new pullIntoDescriptor.viewConstructor(pullIntoDescriptor.buffer, pullIntoDescriptor.byteOffset, bytesFilled / elementSize); |
| 11417 | } |
| 11418 | function ReadableByteStreamControllerEnqueueChunkToQueue(controller, buffer, byteOffset, byteLength) { |
| 11419 | controller._queue.push({ buffer, byteOffset, byteLength }); |
| 11420 | controller._queueTotalSize += byteLength; |
no outgoing calls
no test coverage detected
searching dependent graphs…