Files
Android11/external/antlr/runtime/JavaScript/tests/functional/t051treeRewriteASTy.g
2023-10-13 14:01:41 +00:00

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;} ;