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

> +  }
> +
> +  controller._insideUnderlyingByteSource = false;
> +}
> +
> +function CallPullInto(controller) {
> +  const source = controller._underlyingByteSource;
> +
> +  const pullIntoFunction = source['pullInto'];
> +  if (pullIntoFunction === undefined) {
> +    return;
> +  }
> +
> +  const stream = controller._controlledReadableByteStream;
> +
> +  if (typeof pullIntoFunction !== 'function') {

See the reply to the previous comment.

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

Received on Wednesday, 1 July 2015 07:24:10 UTC