- From: Takeshi Yoshino <notifications@github.com>
- Date: Tue, 24 Jan 2017 01:54:45 -0800
- To: whatwg/streams <streams@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Tuesday, 24 January 2017 09:55:19 UTC
tyoshino commented on this pull request. > @@ -3156,15 +3261,14 @@ nothrow>WritableStreamDefaultWriterRelease ( <var>writer</var> )</h4> 1. Assert: _stream_.[[writer]] is _writer_. 1. Let _releasedError_ be a new *TypeError*. 1. Let _state_ be _stream_.[[state]]. - 1. If _state_ is `"writable"` or `"closing"`, or _stream_.[[pendingAbortRequest]] is not *undefined*, <a>reject</a> + 1. Let _controller_ be _stream_.[[writableStreamController]]. + 1. If _state_ is `"writable"` or `"closing"` or _controller_.[[inClose]] is *true* or _controller_.[[writing]] is *true*, or _stream_.[[pendingAbortRequest]] is not *undefined*, <a>reject</a> Great catch. Right, I've removed the condition but forgot to do so on the spec text. Done. -- 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/655
Received on Tuesday, 24 January 2017 09:55:19 UTC