- From: Takeshi Yoshino <notifications@github.com>
- Date: Thu, 12 Jan 2017 00:16:52 -0800
- To: whatwg/streams <streams@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Thursday, 12 January 2017 08:17:26 UTC
tyoshino commented on this pull request. > @@ -188,7 +188,14 @@ function WritableStreamError(stream, e) { } function WritableStreamFinishClose(stream) { - assert(stream._state === 'closing' || stream._state === 'errored'); + assert(stream._pendingCloseRequest !== undefined); + stream._pendingCloseRequest._resolve(undefined); + stream._pendingCloseRequest = undefined; + + if (stream._pendingAbortRequest !== undefined) { > This is observable in principle Ah, right. Thanks for pointing it out. -- 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/640
Received on Thursday, 12 January 2017 08:17:26 UTC