mixin.js init

This commit is contained in:
cloudhead 2010-03-01 19:47:59 -05:00
parent 0c6366faaf
commit 6ea12f7aa5

11
lib/less/node/mixin.js Normal file
View File

@ -0,0 +1,11 @@
if (typeof(window) === 'undefined') { var tree = require(require('path').join(__dirname, '..', '..', 'less', 'tree')); }
tree.mixin = {};
tree.mixin.Call = function MixinCall(mixins) {
this.mixins = mixins;
};
tree.mixin.Call.prototype = {
toCSS: function (context, env) {
}
};