[antlr-interest] Newbie: NoViableAltException

Diehl, Matthew J matthew.j.diehl at intel.com
Wed Jul 25 12:06:11 PDT 2007


> everything
>   : quote | backslash | mul | plus | minus | binaryString |
> stringLiteral | exponent
>   ;

Forgot the parenthesis around the everything rule:

everything
  : ( quote | backslash | mul | plus | minus | binaryString |
stringLiteral | exponent )*
  ;


More information about the antlr-interest mailing list