Home
last modified time | relevance | path

Searched defs:ObjcClassDeclaration (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dobjc.h38 struct ObjcClassDeclaration struct
40 bool isMeta;
41 bool isExtern;
43 Identifier* identifier;
44 ClassDeclaration* classDeclaration;
45 ClassDeclaration* metaclass;
46 DArray<FuncDeclaration*> methodList;
H A Dobjc.d149 extern (C++) struct ObjcClassDeclaration struct
152 bool isMeta = false;
155 bool isExtern = false;
158 Identifier identifier;
161 ClassDeclaration classDeclaration;
164 ClassDeclaration metaclass;
169 extern (D) this(ClassDeclaration classDeclaration) in this()
174 bool isRootClass() const in isRootClass()