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
Test: test/statements/generators/params-trailing-comma-length.js has incorrect syntax:
test/statements/generators/params-trailing-comma-length.js
function one*(a,) {} function two*(a,b,) {}
It should be:
function* one(a,) {} function* two(a,b,) {}
The text was updated successfully, but these errors were encountered:
Fix incorrect generator syntax (tc39#761)
8ead1de
@JosephPecoraro please sign the CLA: http://tc39.github.io/test262-cla/ and ping back here when that's complete. Thanks!!
Sorry, something went wrong.
Fix incorrect generator syntax (#761) (#762)
fb61ab4
This is fixed on #762
No branches or pull requests
Test:
test/statements/generators/params-trailing-comma-length.js
has incorrect syntax:It should be:
The text was updated successfully, but these errors were encountered: