- From: Domenic Denicola <notifications@github.com>
- Date: Tue, 30 Jun 2015 01:59:45 -0700
- To: whatwg/streams <streams@noreply.github.com>
Received on Tuesday, 30 June 2015 09:00:15 UTC
> + queue.shift();
> + } else {
> + headOfQueue.byteOffset += bytesToCopy;
> + headOfQueue.byteLength -= bytesToCopy;
> + }
> + controller._totalQueuedBytes -= bytesToCopy;
> +
> + pullIntoDescriptor.bytesFilled += bytesToCopy;
> +
> + totalBytesToCopyRemaining -= bytesToCopy
> + }
> +
> + return ready;
> +}
> +
> +function InitializeReadableByteStreamReader(reader, stream) {
Again the function names are a bit confusing. Maybe name the ones that are shared e.g. InitializeReadableByteStreamReaderShared or something?
---
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/streams/pull/361/files#r33553049
Received on Tuesday, 30 June 2015 09:00:15 UTC