aboutsummaryrefslogtreecommitdiff
path: root/include/clang/AST/DeclObjC.h
AgeCommit message (Expand)Author
2009-06-30De-ASTContext-ify DeclContext.Argyrios Kyrtzidis
2009-06-30Remove the ASTContext parameter from the getBody() methods of Decl and subcla...Argyrios Kyrtzidis
2009-06-05Use of DeclContext for objc's ivars. No functionalityFariborz Jahanian
2009-05-22(Next runtime only) check to see if class implements forwardInvocation method Fariborz Jahanian
2009-04-26Implement function-try-blocks. However, there's a very subtle bug that I can'...Sebastian Redl
2009-04-24PCH support for the global method pool (= instance and factory methodDouglas Gregor
2009-04-24Eliminate Sema::ObjCImplementations, relying instead on name lookup. What's g...Douglas Gregor
2009-04-23PCH (de-)serialization of the protocols in an ObjCInterfaceDeclDouglas Gregor
2009-04-23PCH support for ObjCPropertyImplDeclDouglas Gregor
2009-04-23The ivars in an ObjCImplementationDecl are now stored in theDouglas Gregor
2009-04-23PCH support for ObjCCategoryImplDecl (which can't be tested now).Douglas Gregor
2009-04-23PCH (de-)serialization for ObjCImplDecl. This can't be tested yet.Douglas Gregor
2009-04-23Eliminate the three SmallVectors in ObjCImplDecl (for instanceDouglas Gregor
2009-04-22PCH support for Objective-C property declarations (UNTESTED!)Douglas Gregor
2009-04-22Remove lookupFieldDeclFromIvar from ObjCIvarDecl interface.Daniel Dunbar
2009-04-22Mark another TypeForDecl const and make getObjCInterfaceType's argument const.Daniel Dunbar
2009-04-21Add pch reader/writer support for most of DeclObjC.h. Very close to reading/w...Steve Naroff
2009-04-20Fix spelling error.Steve Naroff
2009-04-20Add pch reader/writer support for ObjCContainerDecl, ObjCInterfaceDecl, & Obj...Steve Naroff
2009-04-20Add pch reader/writer support for ObjCMethodDecl.Steve Naroff
2009-04-20Remove non-const form of lookupFieldDeclForIvar.Daniel Dunbar
2009-04-18Add functions for iterating over the argument types of an ObjCMethodDecl.Anders Carlsson
2009-04-18FunctionDecl::getBody() is getting an ASTContext argument for use inDouglas Gregor
2009-04-09Propagate the ASTContext to various AST traversal and lookup functions.Douglas Gregor
2009-03-31add a const version of the lookupFieldDeclForIvar method.Chris Lattner
2009-03-31fe support for objc2's nonfragile-abi synthesized ivars.Fariborz Jahanian
2009-03-30Added new info to property impl. AST node to supportFariborz Jahanian
2009-03-21Issue error if variables are defined inside an objc class,Fariborz Jahanian
2009-03-18objc: Implemented variables declared in class interface Fariborz Jahanian
2009-03-12Add file I forgot to commit in previous commit.Ted Kremenek
2009-03-01Fix <rdar://problem/6619539> incompatible pointer types sending 'XCElementSpa...Steve Naroff
2009-03-01"This patch uses the new ObjCImplDecl class to merge Sema::ImplMethodsVsClas...Chris Lattner
2009-02-28"This patch addresses two FIXME on ObjCCategoryImplDecl:Chris Lattner
2009-02-20add plumbing to get ASTContext& down to allocation/deallocation points in Obj...Chris Lattner
2009-02-20newly factored, we can now move the set and destroy methods out of line.Chris Lattner
2009-02-20factor a bunch of common code out of the ObjCList template classChris Lattner
2009-02-20prune #includesChris Lattner
2009-02-20rename ObjCList::clear() -> ObjCList::Destroy(). Require that destroy is calledChris Lattner
2009-02-20more random cleanups, add some fixme's. ObjCCategoryImplDecl really Chris Lattner
2009-02-20move the @implementation ivar list to being an ObjCList, which preventsChris Lattner
2009-02-20remove dead list.Chris Lattner
2009-02-20remove some more methods from objc decls, using the iteratorChris Lattner
2009-02-20remove some slow O(n) methods.Chris Lattner
2009-02-20Change ObjCForwardProtocolDecl to use an ObjCList.Chris Lattner
2009-02-20move the interace list of @class to use ObjCList.Chris Lattner
2009-02-20remove a dead list.Chris Lattner
2009-02-20switch ObjCMethodDecl's parameter list from being explicitly managed to an Ob...Chris Lattner
2009-02-20switch the interface ivar list from being explicitly managed to using ObjCList.Chris Lattner
2009-02-20move more objc destruction out of dtors into Destroy.Chris Lattner
2009-02-20move some objc decl destruction out of dtors into Destroy method.Chris Lattner