Adam Rice
Adam Rice
**My severity analysis:** Naively written sources and sinks will tend to leak resources. Some number of hours will be lost to debugging these resource leaks. Garbage collection will mitigate this...
+1 for removal of the fallback
Some time ago I moved most of the state checks until after the call to `strategy.size()`. This avoids having to repeat the checks in case `strategy.size()` changed something. But it...
Currently Blink's implementation is quite confused here, so it would be nice to have it clarified.
> TypeError: controller.enqueue is not a function Error: Permission denied to access property "then" > > Streams can't work with web extensions on Firefox, which is a real pity -...
> In the case of `fetch`: wouldn't it make more sense to transfer the whole `Response` instead? Yes, probably. :smile: > But then what would be the benefit of initiating...
With my implementer hat on, I am naturally opposed as it is more work. Without my implementer hat on, I am on the fence. I think it definitely shouldn't be...
Thanks for filing this. My plan for `why` was to add a few more reasons, such as 'error' for when `controller.error()` was called. I intended to use 'exception' for when...
I think sometimes we will need to call finally() asynchronously because we are in a bad state and can't deal with re-entrancy issues. It might be good to guarantee that...
Some notes from recently porting some tests to not use non-zero delays: If there is only one delay() in the test, then it's probably only being used to test async...