diff options
author | Chris Lattner <sabre@nondot.org> | 2008-03-16 20:34:23 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-03-16 20:34:23 +0000 |
commit | 61f9d41036e30ff80130f99b31c0626e3ef057cc (patch) | |
tree | ff0c1c447a95b18ef4eef0998ac081abb583a332 /lib/AST/DeclObjC.cpp | |
parent | 62db2f4214c1589082960f12c9cb8924fe0cf8c5 (diff) |
Add create methods for ObjCCategoryDecl, ObjCForwardProtocolDecl, ObjCClassDecl.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@48426 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/DeclObjC.cpp')
-rw-r--r-- | lib/AST/DeclObjC.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/AST/DeclObjC.cpp b/lib/AST/DeclObjC.cpp index 62336b67bd..2ec9395644 100644 --- a/lib/AST/DeclObjC.cpp +++ b/lib/AST/DeclObjC.cpp @@ -54,6 +54,26 @@ ObjCProtocolDecl *ObjCProtocolDecl::Create(ASTContext &C, SourceLocation L, return new (Mem) ObjCProtocolDecl(L, numRefProtos, Id); } +ObjCClassDecl *ObjCClassDecl::Create(ASTContext &C, SourceLocation L, + ObjCInterfaceDecl **Elts, unsigned nElts) { + void *Mem = C.getAllocator().Allocate<ObjCClassDecl>(); + return new (Mem) ObjCClassDecl(L, Elts, nElts); +} + +ObjCForwardProtocolDecl * +ObjCForwardProtocolDecl::Create(ASTContext &C, SourceLocation L, + ObjCProtocolDecl **Elts, unsigned NumElts) { + void *Mem = C.getAllocator().Allocate<ObjCForwardProtocolDecl>(); + return new (Mem) ObjCForwardProtocolDecl(L, Elts, NumElts); +} + +ObjCCategoryDecl *ObjCCategoryDecl::Create(ASTContext &C, SourceLocation L, + unsigned numRefProtocol, + IdentifierInfo *Id) { + void *Mem = C.getAllocator().Allocate<ObjCCategoryDecl>(); + return new (Mem) ObjCCategoryDecl(L, numRefProtocol, Id); +} + //===----------------------------------------------------------------------===// // Objective-C Decl Implementation |