Now idea is like this: in Java for octalIntegerLiteral
I have a rule
octalNumeral, (integerTypeSuffix optional)
But I want to get a numbers as token, so I used:
octalNumeral javaToken, (integerTypeSuffix optional)
The problem is that it starts to parse strings like: 0777 L
. Can this be easily solved, or I should just deal with it is subclass?