Re: [streams] Have each of the stream and reader hold promises (#277)

> @@ -11,17 +12,17 @@ export default class ExclusiveStreamReader {
>        throw new TypeError('This stream has already been locked for exclusive reading by another reader');
>      }
>  
> -    stream._readableStreamReader = this;
> +    AttachExclusiveStreamReader(stream, this);

I gave it its own operation name for readability. But maybe just adding comments is fine. Reverted.

---
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/streams/pull/277/files#r24314589

Received on Monday, 9 February 2015 08:46:56 UTC