carto/lib/less/tree/call.js

19 lines
611 B
JavaScript

if (typeof(require) !== 'undefined') { var tree = require('less/tree') }
tree.Call = function Call(name, args) {
this.name = name;
this.args = args;
};
tree.Call.prototype = {
eval: function (env) { return this },
toCSS: function (context, env) {
var args = this.args.map(function (a) { return a.eval() });
if (this.name in tree.functions) {
return tree.functions[this.name].apply(tree.functions, args).toCSS();
} else {
return this.name +
"(" + args.map(function (a) { return a.toCSS() }).join(', ') + ")";
}
}
};