Re: Skip tokens, and then continue parse
Posted By:
Andre_Farina
Posted On:
Monday, July 25, 2005 01:22 PM
For example to SKIP whitespaces and continue the parse ...
WS: ( ' '
|' '
|'f'
)
{
$setType(Token.SKIP); // This is done to SKIP the token.
}
;