Re: [whatwg/streams] Unified error handling for WritableStream (#721)

ricea commented on this pull request.



>  }
 
 function WritableStreamUpdateBackpressure(stream, backpressure) {
-  assert(stream._state === 'writable');
+  assert(stream._state === 'writable' || stream._state === 'erroring');

Never. Fixed the assert.

-- 
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/721#discussion_r111301917

Received on Thursday, 13 April 2017 03:00:29 UTC