In What is a 'semantic predicate' in ANTLR3? Bart Kiers gives a very well overview about the different semantic predicates in Antlr3.
Too bad the syntax/semantics were seemingly changed in Antlr4, so this does not compile:
end_of_statement
: ';'
| EOF
| {input.LT(1).getType() == RBRACE}? =>
;
RBRACE
: '}'
;
Could someone please tell me how to do the third case of end_of_statement: Accept if the next token is a '}' but do not consume it.