carto/lib/less/node/element.js
2010-02-25 17:55:12 -05:00

22 lines
563 B
JavaScript

node.Element = function Element(combinator, value) {
this.combinator = combinator;
this.value = value.trim();
};
node.Element.prototype.toCSS = function () {
var css = (this.combinator ? this.combinator.toCSS() : '') + this.value;
return css;
};
node.Combinator = function Combinator(value) {
this.value = value.trim();
};
node.Combinator.prototype.toCSS = function () {
switch (this.value) {
case '&': return "";
case ':': return ' :';
case '>': return ' > ';
default: return ' ' + this.value;
}
};