Fix lexer bugs.
Already handled by case above.
This commit is contained in:
@@ -696,9 +696,6 @@ public class LexState extends Constants {
|
|||||||
_assert (!currIsNewline());
|
_assert (!currIsNewline());
|
||||||
nextChar();
|
nextChar();
|
||||||
continue;
|
continue;
|
||||||
} else if (isdigit(current)) {
|
|
||||||
read_numeral(seminfo);
|
|
||||||
return TK_NUMBER;
|
|
||||||
} else if (isalpha(current) || current == '_') {
|
} else if (isalpha(current) || current == '_') {
|
||||||
/* identifier or reserved word */
|
/* identifier or reserved word */
|
||||||
LuaString ts;
|
LuaString ts;
|
||||||
|
|||||||
Reference in New Issue
Block a user