Details
-
Bug
-
Status: Closed
-
Critical
-
Resolution: Fixed
-
None
-
None
Description
The && token in a logical expression seems to disappear, leaving half of the expression going through to the AST generator stuff.
e.g.
if (x > 1 && y < 2)
results in this
if (x > 1)
If you look into ParserTest at the test testLogicalAndExpression() and look at the console output you'll see what I mean.