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.
A semantic predicate is a way to enforce extra (semantic) rules upon grammar actions using plain code. There are 3 types of semantic predicates: validating semantic predicates; gated semantic predicates; disambiguating semantic predicates.
A language is specified using a context-free grammar expressed using Extended Backus–Naur Form (EBNF). ANTLR can generate lexers, parsers, tree parsers, and combined lexer-parsers.
A lexer is recognizer that draws input symbols from a character stream. lexer grammars result in a subclass of this object. A Lexer object uses simplified match() and error recovery mechanisms in the interest of speed.
There is now just a single type of semantic predicates, which looks like this:
{ <<boolean-epxression>> }?
And the input
attribute from the abstract class Parser
(which your generated parser extends from) now has an underscore in front of it.
So, in your case, the following ANTLR v3 syntax:
{input.LT(1).getType() == RBRACE}? =>
would look like this in ANTLR v4:
{_input.LT(1).getType() == RBRACE}?
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With