-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Do not conflate IDL ReadableStream and JS ReadableStream implicitly. #52
Comments
I think defining operations such as close and enqueue in the infrastructure section and using them from other parts are good for readability and modularity - We can say that we define IDL ReadableStream in the infrastructure section and we can move it to the WebIDL spec or the Streams spec later. |
Yeah, having it in the infrastructure temporarily makes sense. |
I guess this makes sense if you prefer saying "enqueue idlChunk into idlReadableStream" instead of using EnqueueReadableStream directly on JS objects. It is probably a good refactoring. |
This is a refactoring effort. Addressing #52.
This is a refactoring effort. Addressing #52.
Maybe we should open an issue against IDL for this? |
Branched from #50.
We need to distinguish "fetch" (or "IDL") ReadableStream and "JavaScript" ReadableStream, and make their relationship clean.
The text was updated successfully, but these errors were encountered: