18 lines
289 B
Plaintext
18 lines
289 B
Plaintext
|
|
tree grammar LangDumpDecl;
|
||
|
|
options {
|
||
|
|
tokenVocab=Lang;
|
||
|
|
language = ObjC;
|
||
|
|
ASTLabelType = CommonTree;
|
||
|
|
}
|
||
|
|
|
||
|
|
decl : ^(DECL type declarator)
|
||
|
|
// label.start, label.start, label.text
|
||
|
|
{ NSLog(@"int \%@", $declarator.text);}
|
||
|
|
;
|
||
|
|
|
||
|
|
type : INTTYPE ;
|
||
|
|
|
||
|
|
declarator
|
||
|
|
: ID
|
||
|
|
;
|