From a1c8d50699778f140bc69e33b24577a439106923 Mon Sep 17 00:00:00 2001 From: cloudhead Date: Wed, 3 Mar 2010 21:22:11 -0500 Subject: [PATCH] mixin definition constructor init --- lib/less/node/mixin.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/less/node/mixin.js b/lib/less/node/mixin.js index 0a6be4e0..ed9f87af 100644 --- a/lib/less/node/mixin.js +++ b/lib/less/node/mixin.js @@ -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; +};