Skip to content

Commit

Permalink
Adjust formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
cweider committed Jul 10, 2011
1 parent 602780e commit e7b6cb6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lexer.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,8 @@ Lexer.prototype = new function () {
var rules = this._rules;
var rule = rules[r];
while (!tokenMatch[i]) {
i += rule[3];
rule = rules[++r];
i += rule[3];
rule = rules[++r];
}
token.type = rule[1];
token.match = tokenMatch.slice(i, i+rule[3]);
Expand Down

0 comments on commit e7b6cb6

Please sign in to comment.