removed unused inputLength

This commit is contained in:
cloudhead 2010-07-01 02:16:03 +02:00
parent 3318f0a294
commit 8bb17cc4b9

View File

@ -49,7 +49,6 @@ less.Parser = function Parser(env) {
furthest, // furthest index the parser has gone to
chunks, // chunkified input
current, // index of current chunk, in `input`
inputLength,
parser;
var that = this;
@ -251,7 +250,6 @@ less.Parser = function Parser(env) {
return chunks.map(function (c) { return c.join('') });;
})([[]]);
inputLength = input.length;
// Start with the primary rule.
// The whole syntax tree is held under a Ruleset node,