我收到错误
[fatal] rule statement has non-LL(*) decision due to recursive rule invocations reachable from alts 6,7. Resolve by left-factoring or using syntactic predicates or using backtrack=true option.
我不确切知道我的语法的哪一部分引发了这个错误。和 1 个其他相同的错误,用于 alt 3,4
parser grammar syn1;
options {
tokenVocab = lex1;
buildAST=true;
}
program :
statements
;
statements :
statement ( SEMICOLON^ statement )*
;
statement :
variable ASSIGN^ exp
| SKIP
| IF^ boolexp THEN statement ELSE statement
| WHILE^ boolexp DO statement
| READ^ OPENPAREN! variable CLOSEPAREN!
| WRITE^ OPENPAREN! exp CLOSEPAREN!
| WRITE^ OPENPAREN! boolexp CLOSEPAREN!
| WRITE^ OPENPAREN! STRING CLOSEPAREN!
| WRITELN
| OPENPAREN! statements CLOSEPAREN!
;
boolexp :
boolterm ( AND^ boolterm )*
;
boolterm :
NOT^ bool
| bool
;
bool :
TRUE
| FALSE
| exp EQUALS^ exp
| exp LESSEQUALS^ exp
| OPENPAREN! boolexp CLOSEPAREN!
;
exp :
term (( ADD | SUBTRACT )^ term )*
;
term :
factor ( MULTIPLY^ factor ) *
;
factor :
variable
| INTNUM
| OPENPAREN exp CLOSEPAREN
;
variable :
IDENTIFIERS
;
我不知道哪个部分需要重新排列以删除左递归,如果有人能指出这一点,我将不胜感激。