Actions
Bug #7219
closedIgnoring of parentheses in conditions
Start date:
05/18/2016
Due date:
% Done:
100%
Estimated time:
Detected in build:
svn
Platform:
Published in build:
2.3.39
Description
This code
if x && (y || z) then ... endif;
will be translated into Java as if it were the following one.
if x && y || z then ... endif;
Actions