- From: Domenic Denicola <notifications@github.com>
- Date: Wed, 04 Feb 2015 12:39:32 -0800
- To: whatwg/streams <streams@noreply.github.com>
Received on Wednesday, 4 February 2015 20:40:02 UTC
> @@ -118,19 +182,11 @@ export function CreateReadableStreamEnqueueFunction(stream) {
>
> export function CreateReadableStreamErrorFunction(stream) {
> return e => {
> - if (stream._state === 'waiting') {
> - stream._resolveReadyPromise(undefined);
> - }
> if (stream._state === 'readable') {
> stream._queue = [];
Any reason not to move this to ErrorReadableStream?
---
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/streams/pull/277/files#r24117322
Received on Wednesday, 4 February 2015 20:40:02 UTC