Closed flandreas closed 5 months ago
DSL if-statements with terms in conditions are not correctly parsed.
Example:
if (24 == 2 * 12) { 1 }
Comparison operators like "==" should have precedence over term operators like "*".
As a workaround, you can put expressions into parentheses:
if (24 == (2 * 12)) { 1 }
DSL if-statements with terms in conditions are not correctly parsed.
Example:
Comparison operators like "==" should have precedence over term operators like "*".
As a workaround, you can put expressions into parentheses: