- From: Takeshi Yoshino <notifications@github.com>
- Date: Tue, 08 Mar 2016 01:16:47 -0800
- To: whatwg/streams <streams@noreply.github.com>
Received on Tuesday, 8 March 2016 09:17:20 UTC
> @@ -85,7 +85,7 @@ test(() => { > start(controller) { > assert_equals(this, source, 'source is this during start'); > > - const methods = ['close', 'enqueue', 'error', 'constructor']; > + const methods = ['_cancel', '_pull', 'close', 'enqueue', 'error', 'constructor']; Done. I don't know if we can use a Symbol directly on a class syntax. Maybe not. So, the choices are to define the methods in the constructor or to place them out of the class block. I've chose the latter. WDYT? --- Reply to this email directly or view it on GitHub: https://github.com/whatwg/streams/pull/430/files#r55333297
Received on Tuesday, 8 March 2016 09:17:20 UTC