Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

No Format
parse_expr_alts
options {backtrack=true;}
    :   primary
    |   ('++'|'--') e
    |   '(' type ')' e // cast
    ;

The backtrack option is specified in case it is needed, which is in this case because of the cast versus parenthesized expression in primary.

...