我发现了一个简单的语法来开始学习ANTLR。我把它放在myGrammar.g文件中。这是语法:
grammar myGrammar;
/* This will be the entry point of our parser. */
eval
: additionExp
;
/* Addition and subtraction have the lowest precedence. */
additionExp
: multiplyExp
( '+' multiplyExp
| '-' multiplyExp
)*
;
/* Multiplication and division have a higher precedence. */
multiplyExp
: atomExp
( '*' atomExp
| '/' atomExp
)*
;
atomExp
: Number
| '(' additionExp ')'
;
/* A number: can be an integer value, or a decimal value */
Number
: ('0'..'9')+ ('.' ('0'..'9')+)?
;
/* We're going to ignore all white space characters */
WS
: (' ' | '\t' | '\r'| '\n') {$channel=HIDDEN;}
;
当我使用此命令时:
我有这个错误:
有什么问题,我该怎么办?
最佳答案
看来您使用的是antlr4,因此请使用{$channel=HIDDEN;}
替换-> channel(HIDDEN)
。
例子:
/* We're going to ignore all white space characters */
WS
: (' ' | '\t' | '\r'| '\n') -> channel(HIDDEN)
;