Fixed lexing of integer dot identifier

This commit is contained in:
Hackerpilot 2013-07-11 01:22:37 -07:00
parent 3f0994c4d2
commit 9e63e396a4
1 changed files with 24 additions and 3 deletions

View File

@ -945,9 +945,30 @@ L_advance:
break decimalLoop; break decimalLoop;
if (src.canPeek() && src.peek() == '.') if (src.canPeek() && src.peek() == '.')
break decimalLoop; break decimalLoop;
nextCharNonLF(); else
foundDot = true; {
current.type = TokenType.doubleLiteral; // The following bit of silliness tries to tell the
// difference between "int dot identifier" and
// "double identifier".
if (src.canPeek())
{
switch (src.peek())
{
case 'u': case 'U': case 'i': case 'L': case 'f': case 'F':
case 'e': case 'E':
break decimalLoop;
default:
goto doubleLiteral;
}
}
else
{
doubleLiteral:
nextCharNonLF();
foundDot = true;
current.type = TokenType.doubleLiteral;
}
}
break; break;
default: default:
break decimalLoop; break decimalLoop;