ANTLRWorks编译

时间:2013-11-06 11:10:56

标签: antlrworks

我正在使用ANTLRWorks 1.5并且正在尝试编译和调试。有时我在编译时会出现以下错误:


[11:44:52] TODO: run and send output to this console
[11:44:56] C:\Antlr\output\tryParser.java:102: error: <identifier> expected
[11:44:56]  public final tryParser.poly_return poly() throws  {
[11:44:56]                                                  ^
[11:44:56] C:\Antlr\output\tryParser.java:215: error: <identifier> expected
[11:44:56]  public final tryParser.term_return term() throws  {
[11:44:56]                                                  ^
[11:44:56] C:\Antlr\output\tryParser.java:504: error: <identifier> expected
[11:44:56]  public final tryParser.exp_return exp() throws  {
[11:44:56]                                                ^
[11:44:56] 3 errors

有谁能告诉我这个错误是什么意思?

有时它会毫无问题地编译,但我总是得到“超时”#39;调试错误。

我的代码是:


grammar try;
options {output=AST;}
tokens { MULT; } // imaginary token

poly: term ('+'^ term)*
;

term: INT ID  -> ^(MULT["*"] INT ID)
| INT exp -> ^(MULT["*"] INT exp)
| exp
| INT
| ID
;
exp : ID '^'^ INT
;

ID  : 'a'..'z'+ ;
INT : '0'..'9'+ ;
WS  : (' '|'\t'|'\r'|'\n')+ {skip();} ;

1 个答案:

答案 0 :(得分:0)

这意味着您需要更新到ANTLRWorks 1.5.2。

Issue #5: ANTLRworks fails to generate proper Java Code