- From: Domenic Denicola <notifications@github.com>
- Date: Tue, 30 Jun 2015 01:50:51 -0700
- To: whatwg/streams <streams@noreply.github.com>
Received on Tuesday, 30 June 2015 08:51:22 UTC
> + controller._callPullOrPullIntoLaterIfNeeded = false;
> + controller._insideUnderlyingByteSource = true;
> +
> + try {
> + pullFunction.apply(source);
> + } catch (e) {
> + DestoryReadableByteStreamController(controller);
> + if (stream._state === 'readable') {
> + ErrorReadableByteStream(stream, e);
> + }
> + }
> +
> + controller._insideUnderlyingByteSource = false;
> +}
> +
> +function CallPullInto(controller) {
Name too generic again
---
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/streams/pull/361/files#r33552360
Received on Tuesday, 30 June 2015 08:51:22 UTC