From d395adc55bc898dcbd8efbbd0f016505dc468524 Mon Sep 17 00:00:00 2001 From: Luke Page Date: Sat, 2 Feb 2013 15:39:59 +0000 Subject: [PATCH] remove shorthand --- lib/less/tree/rule.js | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/lib/less/tree/rule.js b/lib/less/tree/rule.js index 8990fef0..7c676bb7 100644 --- a/lib/less/tree/rule.js +++ b/lib/less/tree/rule.js @@ -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'));