blob: 72262caba6e51810887dc4cbc3ca4a192e36338e [file] [log] [blame]
grammar t057autoAST44;
options {language=JavaScript;output=AST;}
a returns [result] : ID b {
/* @todo */
/* $result = $b.i.toString() + '\n'; */
} ;
b returns [i] : INT {$i=parseInt($INT.text);} ;
ID : 'a'..'z'+ ;
INT : '0'..'9'+;
WS : (' '|'\n') {$channel=HIDDEN;} ;