10 lines
195 B
Plaintext
Executable File
10 lines
195 B
Plaintext
Executable File
grammar t051treeRewriteASTaa;
|
|
options {
|
|
language=JavaScript;
|
|
output=AST;
|
|
}
|
|
a : 'boo' ID INT -> ^('boo' ^(ID INT)) ;
|
|
ID : 'a'..'z'+ ;
|
|
INT : '0'..'9'+;
|
|
WS : (' '|'\n') {$channel=HIDDEN;} ;
|