Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ANTLR "unexpected end of subtree"

Hey. I'm new to ANTLR. ANTLRWorks wizard wrrited for me the following code:

grammar test;

ID  :   ('a'..'z'|'A'..'Z'|'_') ('a'..'z'|'A'..'Z'|'0'..'9'|'_')*
    ;

INT :   '0'..'9'+
    ;

FLOAT
    :   ('0'..'9')+ '.' ('0'..'9')* EXPONENT?
    |   '.' ('0'..'9')+ EXPONENT?
    |   ('0'..'9')+ EXPONENT
    ;

COMMENT
    :   '//' ~('\n'|'\r')* '\r'? '\n' {$channel=HIDDEN;}
    |   '/*' ( options {greedy=false;} : . )* '*/' {$channel=HIDDEN;}
    ;

WS  :   ( ' '
        | '\t'
        | '\r'
        | '\n'
        ) {$channel=HIDDEN;}
    ;

STRING
    :  '"' ( ESC_SEQ | ~('\\'|'"') )* '"'
    ;
CHAR:  '\'' ( ESC_SEQ | ~('\''|'\\') ) '\''
    ;

fragment
EXPONENT : ('e'|'E') ('+'|'-')? ('0'..'9')+ ;

fragment
HEX_DIGIT : ('0'..'9'|'a'..'f'|'A'..'F') ;

fragment
ESC_SEQ
    :   '\\' ('b'|'t'|'n'|'f'|'r'|'\"'|'\''|'\\')
    |   UNICODE_ESC
    |   OCTAL_ESC
    ;

fragment
OCTAL_ESC
    :   '\\' ('0'..'3') ('0'..'7') ('0'..'7')
    |   '\\' ('0'..'7') ('0'..'7')
    |   '\\' ('0'..'7')
    ;

fragment
UNICODE_ESC
    :   '\\' 'u' HEX_DIGIT HEX_DIGIT HEX_DIGIT HEX_DIGIT
    ;

When debugging it, it throws the following error:

[22:45:49] error(100): C:\Documents and Settings\user\Desktop\test.g:0:0: syntax error: codegen: <AST>:0:0: unexpected end of subtree

Can someone explain me what is the error, where is it and how can I fix it?

Thanks.

like image 492
Alon Gubkin Avatar asked Dec 16 '09 20:12

Alon Gubkin


1 Answers

In ANTLR, every rule that starts with an uppercase is a lexer rule. The ones that start with a lower case are parser rules. As you can see, you only have lexer rules: and there's your problem. You have to have at least one parser rule. If you add the following rule:

parse
  :  ID
  |  INT
  |  // ...
  ;

the error will disappear when generating source files for your lexer/parser.

like image 173
Bart Kiers Avatar answered Sep 27 '22 22:09

Bart Kiers