(controller, buffer, byteOffset, byteLength)
| 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; |
| 11421 | } |
| 11422 | function ReadableByteStreamControllerEnqueueClonedChunkToQueue(controller, buffer, byteOffset, byteLength) { |
| 11423 | let clonedChunk; |
| 11424 | try { |
no test coverage detected
searching dependent graphs…