Re: [streams] Byte stream update, including reference implementation (#361)

> @@ -0,0 +1,965 @@
> +const assert = require('assert');
> +import { CreateIterResultObject, InvokeOrNoop, PromiseInvokeOrNoop, typeIsObject } from './helpers';
> +
> +export default class ReadableByteStream {
> +  constructor(underlyingByteSource = {}) {
> +    this._state = 'readable';
> +    this._reader = undefined;
> +    this._storedError = undefined;
> +
> +    this._controller = undefined;

AAh! This is required. Reverted with a comment. a1745016eae6ec0dd8e49c938e43c89744d37499

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

Received on Tuesday, 30 June 2015 09:50:31 UTC