mixin definition constructor init

This commit is contained in:
cloudhead 2010-03-03 21:22:11 -05:00
parent 4767b264e7
commit a1c8d50699

View File

@ -20,3 +20,8 @@ tree.mixin.Call.prototype = {
throw new(Error)("mixin " + this.selector.toCSS() + " is undefined");
}
};
tree.mixin.Definition = function MixinDefinition(name, params) {
this.name = name;
this.params = params;
};