Fixed infinine loop bug when the dot was the last character in the file

This commit is contained in:
Hackerpilot 2013-09-01 13:53:01 +00:00
parent ce53b1643b
commit 31548a6e6d
1 changed files with 1 additions and 0 deletions

View File

@ -497,6 +497,7 @@ L_advance:
{
current.type = TokenType.dot;
current.value = tokenValue!(TokenType.dot);
nextCharNonLF();
return;
}
switch (src.peek())