Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
576 views
in Technique[技术] by (71.8m points)

antlr - Syntax of semantic predicates in 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.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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}?

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...