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
Even with no transformers enabled, generator methods are converted to normal methods, likely leading to an error on the yield keyword.
class Foo { *generator() { yield 32; } }
is transpiled to
class Foo { generator() { yield 32; } }
The text was updated successfully, but these errors were encountered:
Do not remove generator markers
47449de
Fixes alangpierce#462
Do not remove generator markers (#463)
8882acd
Fixes #462
Successfully merging a pull request may close this issue.
Even with no transformers enabled, generator methods are converted to normal methods, likely leading to an error on the yield keyword.
is transpiled to
The text was updated successfully, but these errors were encountered: