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
{{ message }}
This repository has been archived by the owner on Oct 8, 2024. It is now read-only.
Ideally %WrapForValidAsyncIteratorPrototype%.return and %WrapForValidAsyncIteratorPrototype%.next should match as closely as possible. Right now, because of how AsyncIteratorClose is factored, %WrapForValidAsyncIteratorPrototype%.return can't just do a passthrough of the promise from the underlying iterator's .return (because its resulted is Await'd by AsyncIteratorClose). We should maybe not use AsyncIteratorClose and instead directly implement the logic so that we can pass through the promise directly, as we did in #197.
The text was updated successfully, but these errors were encountered:
Ideally
%WrapForValidAsyncIteratorPrototype%.return
and%WrapForValidAsyncIteratorPrototype%.next
should match as closely as possible. Right now, because of howAsyncIteratorClose
is factored,%WrapForValidAsyncIteratorPrototype%.return
can't just do a passthrough of the promise from the underlying iterator's.return
(because its resulted isAwait
'd byAsyncIteratorClose
). We should maybe not useAsyncIteratorClose
and instead directly implement the logic so that we can pass through the promise directly, as we did in #197.The text was updated successfully, but these errors were encountered: