Re: [streams] Merge ReadableByteStream into ReadableStream (#430)

> @@ -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