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
このエラーの意味を誰か教えてもらえますか?
問題なくコンパイルされることもありますが、デバッグ中に常に「タイムアウト」エラーが発生します。
私のコードは次のとおりです。
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();} ;