From 6cb63573c6514d7cfc6be9eae9058334ab7e21e5 Mon Sep 17 00:00:00 2001 From: Stephen Oney Date: Fri, 20 Dec 2013 13:17:24 -0500 Subject: [PATCH] remove char --- src/jsep.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jsep.js b/src/jsep.js index 6af8b19..a65417c 100644 --- a/src/jsep.js +++ b/src/jsep.js @@ -195,7 +195,7 @@ // An individual part of a binary expression: // e.g. `foo.bar(baz)`, `1`, `"abc"`, `(a % 2)` (because it's in parenthesis) gobbleToken = function() { - var ch, curr_node, char, unop, to_check, tc_len; + var ch, curr_node, unop, to_check, tc_len; gobbleSpaces(); ch = exprICode(index);