-
-
Notifications
You must be signed in to change notification settings - Fork 368
New issue
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
Better fix for new-for-builtins
#1022
Conversation
fisker
commented
Jan 15, 2021
- Fix some edge case.
- Keep comments.
> Output | ||
|
||
`␊ | ||
1 | const symbol = (Symbol)("");␊ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was fixed to
const symbol = Symbol)("");
> Output | ||
|
||
`␊ | ||
1 | const symbol = /* comment */ Symbol("");␊ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This comment was removed.
> Output | ||
|
||
`␊ | ||
1 | const symbol = Symbol();␊ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was fixed to
const symbol = Symbol;