We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
if()
Follow-up on #3615:
For Less v4:
v4
value: if(false, 0, 6 / 3);
value: 6 / 3;
value: if(false, 0, (6 / 3));
value: 2;
value: if(false, 0, ((6 / 3)));
The text was updated successfully, but these errors were encountered:
Fix #3616 IfStatement requires double parentheses when dividing (#3626)
c518180
* fix: fix the special parens case * fix the issue number
Successfully merging a pull request may close this issue.
Follow-up on #3615:
For Less
v4
:value: if(false, 0, 6 / 3);
value: 6 / 3;
value: 6 / 3;
value: if(false, 0, (6 / 3));
value: 2;
value: 6 / 3;
value: if(false, 0, ((6 / 3)));
value: 2;
value: 2;
.The text was updated successfully, but these errors were encountered: