android13/external/antlr/runtime/JavaScript/tests/functional/t058rewriteAST49.g

8 lines
199 B
Plaintext
Executable File

grammar t058rewriteAST49;
options {language=JavaScript;output=AST;}
a : 'int' ID (',' ID)* ';' -> ^('int' ID+) ;
op : '+'|'-' ;
ID : 'a'..'z'+ ;
INT : '0'..'9'+;
WS : (' '|'\n') {$channel=HIDDEN;} ;