Closed
Description
This is related to #2763 pull request.
The guards of this mixin:
.orderOfEvaluation(@a1, @a2, @a3) when ((@a1) and (@a2) or (@a3)) {
no-parenthesis: evaluated true 1;
}
should be evaluated to true if called like this .orderOfEvaluation(false, false, true)
e.g. the same way as logic in javascript works.