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

8 lines
199 B
Plaintext
Executable File

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