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

10 lines
191 B
Plaintext
Executable File

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