You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Workaround is to write the expression with brackets to tell the parser how to evaluate the conditions like this: e > 5 && (e < 8) or (e > 5) && (e < 8)
Describe the bug
Assume an expression like this:
e > 5 && e < 8
The
ExpressionParser
will parse the expression like this:(e > 5 && e) < 8
To Reproduce
Expected behavior
Expected the parser to parse the expression like this:
(e > 5) && (e < 8)
Desktop (please complete the following information):
Additional context
The text was updated successfully, but these errors were encountered: