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

7 lines
180 B
Plaintext
Executable File

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