- From: Takeshi Yoshino <notifications@github.com>
- Date: Thu, 09 Mar 2017 00:12:44 -0800
- To: whatwg/streams <streams@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Thursday, 9 March 2017 08:13:19 UTC
tyoshino commented on this pull request.
>
WritableStreamDefaultControllerAdvanceQueueIfNeeded(controller);
}
+function WritableStreamDefaultControllerStart(controller) {
+ const startResult = InvokeOrNoop(controller._underlyingSink, 'start', [controller]);
+ Promise.resolve(startResult).then(
+ () => {
+ controller._started = true;
+ // TODO: Test this.
I no longer remember what I wanted to do. It seems this logic is well tested by start.js basically. I've removed this TODO.
--
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/672#discussion_r105105795
Received on Thursday, 9 March 2017 08:13:19 UTC