Fixed lexing of integer dot identifier
This commit is contained in:
parent
3f0994c4d2
commit
9e63e396a4
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue