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
Writing expressions like these in functional syntax:
foo = (+1, -1) bar = (-2.1) baz = (+3 -4) # parses, but to the wrong expression
All fail because the parser sees the operator and thinks that must be a numeric operation.
Instead, we'd like for signed numbers to have priority over number operations at the start of the parens group, just like we do for *.
*
Bend commit 0ac443c
No response
The text was updated successfully, but these errors were encountered:
#748 Fix signed numbers not parsing correctly after parens
c52acc2
09c0f9e
#748 Fix signed numbers not parsing correctly after parens (#749)
36c7f37
Closed by #749
Sorry, something went wrong.
No branches or pull requests
Reproducing the behavior
Writing expressions like these in functional syntax:
All fail because the parser sees the operator and thinks that must be a numeric operation.
Instead, we'd like for signed numbers to have priority over number operations at the start of the parens group, just like we do for
*
.System Settings
Bend commit 0ac443c
Additional context
No response
The text was updated successfully, but these errors were encountered: