You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(async()=>{letcontroller;conststream=newReadableStream({start(c){controller=c;}});constvalues=stream.values();letnext1Promise=values.next();letnext2Promise=values.next();// Must have second next() pending and unresolved to reprocontroller.enqueue(1);// enqueue() will resolve first next() but leaving second next() pendingawaitnext1Promise;// Must wait for first next() to resolve to reprovalues.return();// Will throw ERR_INTERNAL_ASSERTION})();
How often does it reproduce? Is there a required condition?
Two next() is called with one resolved and another one pending. Then call return() would throw.
What is the expected behavior? Why is that the expected behavior?
return() should not error out. It should not resolve until the second next() is resolved.
> Uncaught:
Error [ERR_INTERNAL_ASSERTION]: This is caused by either a bug in Node.js or incorrect usage of Node.js internals.
Please open an issue with this stack trace at https://github.com/nodejs/node/issues
at assert (node:internal/assert:14:11)
at returnSteps (node:internal/webstreams/readablestream:510:7)
at Object.return (node:internal/webstreams/readablestream:557:11) {
code: 'ERR_INTERNAL_ASSERTION'
}
Additional information
The same code also cause STATUS_ACCESS_VIOLATION in Chrome 134.0.6998.89, and Edge 134.0.3124.93. And NS_ERROR_FAILURE in Firefox 136.0.4.
Node.js CLI 22.14.0
Chrome 134.0.6998.89
Edge 134.0.3124.93
Firefox 136.0.4
The text was updated successfully, but these errors were encountered:
Version
22.14.0
Platform
Subsystem
internal/webstreams/readablestream
What steps will reproduce the bug?
How often does it reproduce? Is there a required condition?
Two
next()
is called with one resolved and another one pending. Then callreturn()
would throw.What is the expected behavior? Why is that the expected behavior?
return()
should not error out. It should not resolve until the secondnext()
is resolved.Please refer to https://streams.spec.whatwg.org/#rs-asynciterator related to how functions are resolved.
What do you see instead?
Additional information
The same code also cause
STATUS_ACCESS_VIOLATION
in Chrome 134.0.6998.89, and Edge 134.0.3124.93. AndNS_ERROR_FAILURE
in Firefox 136.0.4.Node.js CLI 22.14.0
Chrome 134.0.6998.89
Edge 134.0.3124.93
Firefox 136.0.4
The text was updated successfully, but these errors were encountered: