mirror of
https://github.com/less/less.js.git
synced 2026-04-09 03:00:20 -04:00
12 lines
292 B
JavaScript
12 lines
292 B
JavaScript
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) {
|
|
|
|
}
|
|
};
|