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

9 lines
249 B
Plaintext
Executable File

grammar t058rewriteAST70;
options {language=JavaScript;output=AST;}
tokens {PARMS;}
modulo
: 'modulo' ID ('(' parms+ ')')? -> ^('modulo' ID ^(PARMS parms+)?)
;
parms : '#'|ID;
ID : ('a'..'z' | 'A'..'Z')+;
WS : (' '|'\n') {$channel=HIDDEN;} ;