forked from jasder/antlr
5 lines
73 B
Plaintext
5 lines
73 B
Plaintext
|
tree grammar UWalker;
|
||
|
options {tokenVocab=U;}
|
||
|
|
||
|
a : ^(DECL x+=ID y=INT) ;
|