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

8 lines
179 B
Plaintext
Executable File

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