...
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.
...