fix mixin definitions inside other mixin definitions
This commit is contained in:
parent
2afcdd7860
commit
752bf96e53
@ -15,7 +15,7 @@ tree.Ruleset.prototype = {
|
||||
rules.push(rule.evalRules(context));
|
||||
} else if (rule instanceof tree.mixin.Call) {
|
||||
Array.prototype.push.apply(rules, rule.eval(context));
|
||||
} else {
|
||||
} else if (! (rule instanceof tree.mixin.Definition)) {
|
||||
rules.push(rule.eval ? rule.eval(context) : '');
|
||||
}
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user