We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Step 4 of the specification currently says:
Perform AsyncFunctionStart(promiseCapability, fromAsyncClosure).
This is an error. AsyncFunctionStart, which in turn calls AsyncBlockStart, expects its second argument to be a Parse Node.
We might want first to call CreateBuiltinFunction on fromAsyncClosure or something.
This issue was discovered by Aditi Singh of Igalia.
The text was updated successfully, but these errors were encountered:
You can change AsyncBlockStart to accept either a parse node or an Abstract Closure with no parameters. That's what GeneratorStart does.
AsyncBlockStart
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Step 4 of the specification currently says:
This is an error. AsyncFunctionStart, which in turn calls AsyncBlockStart, expects its second argument to be a Parse Node.
We might want first to call CreateBuiltinFunction on fromAsyncClosure or something.
This issue was discovered by Aditi Singh of Igalia.
The text was updated successfully, but these errors were encountered: