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
SyntaxError: Logical expressions and coalesce expressions cannot be mixed. Wrap either by parentheses (1:14)
It should keep the parentheses.
The following code:
(false || true) ?? !1
is being transformed without parentheses, and throwing a SyntaxError
SyntaxError
The text was updated successfully, but these errors were encountered:
Thanks @pablobfonseca for reporting this, should be fixed shortly.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Motivation
SyntaxError: Logical expressions and coalesce expressions cannot be mixed. Wrap either by parentheses (1:14)
Expected behavior
It should keep the parentheses.
Actual behavior
The following code:
is being transformed without parentheses, and throwing a
SyntaxError
The text was updated successfully, but these errors were encountered: