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;
Updated by Andrei Tatarnikov over 8 years ago
- Status changed from New to Resolved
- Target version set to 2.3
- % Done changed from 0 to 100
Fixed: r6520.
Updated by Andrei Tatarnikov over 8 years ago
- Status changed from Resolved to Closed
- Published in build set to 2.3.39
Actions