rebuilding lexer

This commit is contained in:
Jeremy Ashkenas 2010-10-11 08:06:27 -04:00
parent 9c55bd59a1
commit bfed78a996
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@
this.seenFor = false;
this.indents = [];
this.tokens = [];
while ((this.chunk = code.slice(this.i))) {
while (this.chunk = code.slice(this.i)) {
this.identifierToken() || this.commentToken() || this.whitespaceToken() || this.lineToken() || this.heredocToken() || this.stringToken() || this.numberToken() || this.regexToken() || this.jsToken() || this.literalToken();
}
this.closeIndentation();