From e8ac71c5b09fec064bd37f4dcd722c9e009d7b57 Mon Sep 17 00:00:00 2001 From: Alexis Sellier Date: Sun, 15 Jan 2012 17:23:20 +0100 Subject: [PATCH] (minor) add missing semi-colon --- lib/less/tree/condition.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/less/tree/condition.js b/lib/less/tree/condition.js index 624d7e29..6b79dc96 100644 --- a/lib/less/tree/condition.js +++ b/lib/less/tree/condition.js @@ -11,7 +11,7 @@ tree.Condition.prototype.eval = function (env) { var a = this.lvalue.eval(env), b = this.rvalue.eval(env); - var i = this.index, result + var i = this.index, result; var result = (function (op) { switch (op) {