Я нуб в АНТЛР.Я создаю компилятор для простого языка, но я не понимаю, почему, если я пишу неверную ключевую строку, компилятор не выдаст мне правильную ошибку.
Это моя грамматика:
grammar Exercise;
block : '{' statement* '}';
statement : assignment ';'
| deletion ';'
| print ';'
| declaration* ';'
| ifStat
| functionDecl
| exp
| block+
;
assignment : ID '=' exp;
type : 'int'
| 'boolean'
;
typeF : 'void' ;
declaration : type ID ;
deletion : 'delete' ID;
print : 'print' exp;
bool : 'true'
| 'false'
;
exp : '(' exp ')'
| ID '(' expList? ')'
| NUMBER
| bool
| ID
;
expIF : ID EQ ID
| ID EQ bool
| ID GT ID
| ID LT ID
| ID NEQ ID
| ID GTEQ ID
| ID LTEQ ID
| NOT ID
| ID
;
ifStat : 'if' '('expIF')' 'then' block ('else' block)? ;
formalParameter : declaration
| rif declaration
;
rif : 'var';
formalParameters : formalParameter (',' formalParameter)* ;
functionDecl : typeF ID LPAR formalParameters? RPAR block ;
expList : ID (',' ID )* ;
//IDs
fragment CHAR : 'a'..'z' |'A'..'Z' ;
ID : (CHAR)+ | (DIGIT)+ ;
//Numbers
fragment DIGIT : '0'..'9';
NUMBER : DIGIT+;
OR : '||';
AND : '&&';
NOT : '!';
EQ : '==';
NEQ : '!=';
GT : '>';
LT : '<';
GTEQ : '>=';
LTEQ : '<=';
LPAR : '(';
RPAR : ')';
//ESCAPE SEQUENCES
WS : (' '|'\t'|'\n'|'\r')-> skip;
LINECOMMENTS : '//' (~('\n'|'\r'))* -> skip;
BLOCKCOMMENTS : '/*'( ~('/'|'*')|'/'~'*'|'*'~'/'|BLOCKCOMMENTS)* '*/' -> skip;
ERR: . -> channel(HIDDEN);
Вот мой основной:
public static void main(String[] args) {
//create lexer
ExerciseLexer lexer = new ExerciseLexer(new ANTLRInputStream("{ double a ; boolean d; a = 4 ; {boolean d ; int a} int s;}") );
//create parser
CommonTokenStream tokens = new CommonTokenStream(lexer);
ExerciseParser parser = new ExerciseParser(tokens);
//tell the parser to build the AST
parser.setBuildParseTree(true);
//build custom visitor
ExerciseVisitorImpl visitor = new ExerciseVisitorImpl();
ParseTree pt = parser.block();
visitor.visit(pt);
Например, в этом случае я должен получить ошибку для ключевого слова "double", но я получаю "строку 1:51 посторонний ввод"}'Ожидая {' логическое значение ','; ',' int '} ".В чем проблема?Большое вам спасибо!