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
var foo = { * bar() { yield 42; } };
gets formatted like:
Similarly,
var foo = { bar() { return 42; }, * barGen() { yield 42; } };
is formatted as:
Ideally, the star should be on the same line as the generator name, with a space between the star and the generator name
The text was updated successfully, but these errors were encountered:
I would definitely like to see this issue resolved. Thanks! Mike
Sorry, something went wrong.
@mastephens - I'm sorry, my time if very limited currently. Any help you can provide would be great!
1b52eb1
Awesome, thank you!
No branches or pull requests
gets formatted like:
Similarly,
is formatted as:
Ideally, the star should be on the same line as the generator name, with a space between the star and the generator name
The text was updated successfully, but these errors were encountered: