18 lines
289 B
Plaintext
Executable File
18 lines
289 B
Plaintext
Executable File
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
|
|
;
|