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