pulling the lexer and rewriter updates without the grammar change

This commit is contained in:
Jeremy Ashkenas
2010-02-13 00:15:34 -05:00
parent 094c2682bd
commit c9aeae757b
4 changed files with 8 additions and 9 deletions

View File

@@ -117,7 +117,7 @@
this.tag(1, 'PROPERTY_ACCESS');
}
}
tag === 'ELSE' && this.tag() === 'IF' ? this.tag(1, 'ELSIF') : this.token(tag, id);
tag === 'IF' && this.tag() === 'ELSE' ? this.tag(1, 'ELSIF') : this.token(tag, id);
this.i += id.length;
return true;
};