diff options
Diffstat (limited to 'lib/AST/DeclObjC.cpp')
-rw-r--r-- | lib/AST/DeclObjC.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/AST/DeclObjC.cpp b/lib/AST/DeclObjC.cpp index cd4c6fff9f..4f1671ef07 100644 --- a/lib/AST/DeclObjC.cpp +++ b/lib/AST/DeclObjC.cpp @@ -73,6 +73,21 @@ ObjCCategoryDecl *ObjCCategoryDecl::Create(ASTContext &C, SourceLocation L, return new (Mem) ObjCCategoryDecl(L, Id); } +ObjCCategoryImplDecl * +ObjCCategoryImplDecl::Create(ASTContext &C, SourceLocation L,IdentifierInfo *Id, + ObjCInterfaceDecl *ClassInterface) { + void *Mem = C.getAllocator().Allocate<ObjCCategoryImplDecl>(); + return new (Mem) ObjCCategoryImplDecl(L, Id, ClassInterface); +} + +ObjCImplementationDecl * +ObjCImplementationDecl::Create(ASTContext &C, SourceLocation L, + IdentifierInfo *Id, + ObjCInterfaceDecl *ClassInterface, + ObjCInterfaceDecl *SuperDecl) { + void *Mem = C.getAllocator().Allocate<ObjCImplementationDecl>(); + return new (Mem) ObjCImplementationDecl(L, Id, ClassInterface, SuperDecl); +} //===----------------------------------------------------------------------===// // Objective-C Decl Implementation |