removed debugger statement mistakenly left out.

This commit is contained in:
seven-phases-max
2014-02-01 03:58:24 +04:00
parent 554448d49b
commit 98df50e016

View File

@@ -442,7 +442,6 @@ less.Parser = function Parser(env) {
if (matched) { continue; }
return fail("unmatched `" + String.fromCharCode(cc) + "`", currentChunkStartIndex);
case 47: // /, check for comment
// if (chunks.length >= 47) debugger;
if (parenLevel || (parserCurrentIndex == len - 1)) { continue; }
cc2 = input.charCodeAt(parserCurrentIndex + 1);
if (cc2 == 47) {