Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Syntax of semantic predicates in Antlr4

Tags:

antlr

antlr4

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.

like image 673
kay Avatar asked Oct 05 '12 15:10

kay


People also ask

What is a semantic predicate?

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.

What grammar does Antlr use?

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.

What is Antlr lexer?

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.


1 Answers

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}?
like image 81
Bart Kiers Avatar answered Oct 18 '22 11:10

Bart Kiers