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
Tried
(nil ?? 1) > 0
Expected (nil ?? 1) > 0
Got nil ?? 1 > 0, which is invalid expression coz Operator (>) and coalesce expressions (??) cannot be mixed. Wrap either by parentheses
nil ?? 1 > 0
Operator (>) and coalesce expressions (??) cannot be mixed. Wrap either by parentheses
The text was updated successfully, but these errors were encountered:
probably related to #434
Sorry, something went wrong.
This can be fixed. =)
507d734
No branches or pull requests
Tried
(nil ?? 1) > 0
to astExpected
(nil ?? 1) > 0
Got
nil ?? 1 > 0
, which is invalid expression cozOperator (>) and coalesce expressions (??) cannot be mixed. Wrap either by parentheses
The text was updated successfully, but these errors were encountered: