remove shorthand

This commit is contained in:
Luke Page
2013-02-02 15:39:59 +00:00
parent bbef83e171
commit d395adc55b

View File

@@ -34,16 +34,4 @@ tree.Rule.prototype.makeImportant = function () {
this.index, this.inline);
};
tree.Shorthand = function (a, b) {
this.a = a;
this.b = b;
};
tree.Shorthand.prototype = {
toCSS: function (env) {
return this.a.toCSS(env) + "/" + this.b.toCSS(env);
},
eval: function () { return this }
};
})(require('../tree'));