- From: Takeshi Yoshino <notifications@github.com>
- Date: Tue, 02 Aug 2016 02:14:14 -0700
- To: whatwg/streams <streams@noreply.github.com>
Received on Tuesday, 2 August 2016 09:25:41 UTC
> + return false; > + } > + > + return true; > +} > + > +function WritableStreamAbort(stream, reason) { > + const state = stream._state; > + if (state === 'closed') { > + return Promise.resolve(undefined); > + } > + if (state === 'errored') { > + return Promise.reject(stream._storedError); > + } > + > + assert(state === 'writable' || state === 'waiting' || state === 'closing'); Oh, I was thinking that GetTotalQueueSize() is optimized by letting the EnqueueValueWithSize() and DequeueValue() calculate and save the total size, but it's for loop. That should be the cause. --- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/whatwg/streams/pull/488/files/dfa07172203b4c292cfb5a3fc88e821a1db7c3db#r73120992
Received on Tuesday, 2 August 2016 09:25:41 UTC