1. 9482a4f Fixed a comment. by Fariborz Jahanian · 16 years ago
  2. ae6f6fd This test checks for duplicate implementation of the same by Fariborz Jahanian · 16 years ago
  3. b85cce6 This patch corrects problem in searching for a setter/getter method for by Fariborz Jahanian · 16 years ago
  4. 31afbf0 Refactored checking on readonly property into a method. by Fariborz Jahanian · 16 years ago
  5. 8ec03f5 Rename NamedDecl::getIdentifierName() to ::getNameAsCString() and make it by Chris Lattner · 16 years ago
  6. 077bf5e Rename Selector::getName() to Selector::getAsString(), and add by Chris Lattner · 16 years ago
  7. 2e1cd42 Introduction the DeclarationName class, as a single, general method of by Douglas Gregor · 16 years ago
  8. e86d923 Fix "possibly uninitialized" warning. by Daniel Dunbar · 16 years ago
  9. 7b47322 Add addPropertyMethods implementations for by Daniel Dunbar · 16 years ago
  10. 394d33f Add ObjCPropertyDecl::isReadOnly. by Daniel Dunbar · 16 years ago
  11. 3216dcd constify ObjC*::getClassMethod,getInstanceMethod by Daniel Dunbar · 16 years ago
  12. 08a356c Missed a file; part of: by Daniel Dunbar · 16 years ago
  13. 9f0afd4 Rename ObjCPropertyImplDecl::PropertyImplKind (consistency) by Daniel Dunbar · 16 years ago
  14. 5fa6331 Fix return type for setter method. by Daniel Dunbar · 16 years ago
  15. 4d7da2f Synthesize property setter method as we do for getter. by Daniel Dunbar · 16 years ago
  16. f641492 Fix attributes on Obj-C interfaces & methods. by Daniel Dunbar · 16 years ago
  17. 01e6779 Added ObjCAtDefsFieldDecl to represent FieldDecls created by @defs. by Ted Kremenek · 16 years ago
  18. e91593e More #include cleaning by Daniel Dunbar · 16 years ago
  19. b8db21d When constructing an ObjCIvarDecl object in Sema, provide its visibility up front instead of setting it afterwards. by Ted Kremenek · 16 years ago
  20. 780f329 move two more lists of protocols over to use ObjCList<ObjCProtocolDecl>, by Chris Lattner · 16 years ago
  21. 3db6cae introduce a new ObjCList templated class and start moving by Chris Lattner · 16 years ago
  22. f7b2c98 rename setReferencedProtocolList -> addReferencedProtocols to by Chris Lattner · 16 years ago
  23. b752f28 Switch initialization of the protocol list for an interface decl to use by Chris Lattner · 16 years ago
  24. 8f3b265 Two fixes: by Steve Naroff · 16 years ago
  25. 05ac3ef Reclaim memory owned by ObjCForwardProtocolDecls. by Ted Kremenek · 16 years ago
  26. 400d95f Implement "Destroy" and destructor for ObjCClassDecl, allowing us to reclaim its memory and the memory of the Decls it owns. by Ted Kremenek · 16 years ago
  27. 1c8a413 Implement "Destroy" and destructor for ObjCProtocolDecl, allowing us to reclaim its memory and the memory of the Decls it owns. by Ted Kremenek · 16 years ago
  28. 1a726d7 Because of a lack of a clear ownership role between ObjCInterfaceDecls and by Ted Kremenek · 16 years ago
  29. 8a77931 Initial work on additional memory collection for ObjC AST objects. We now by Ted Kremenek · 16 years ago
  30. 3d2c22b Fix <rdar://problem/5987482> clang on xcode: null dereference in Sema::ActOnMemberReferenceExpr. by Steve Naroff · 16 years ago
  31. 6c930f2 Make sure we look through categories when searching for a classes property. by Steve Naroff · 16 years ago
  32. 6b3502c fix free/delete mismatch problem in add/mergeProperties (found by valgrind) by Nuno Lopes · 16 years ago
  33. 4607034 Synthesized getter/setter method declarations need not have by Fariborz Jahanian · 16 years ago
  34. 33de3f0 This patch introduces declaration of getter methods for ObjC2's by Fariborz Jahanian · 16 years ago
  35. 46b55e5 percolate @optional/@required protocols down to ASTs for by Fariborz Jahanian · 16 years ago
  36. aebf0cb This patch is about merging ObjC2's properties declared in class by Fariborz Jahanian · 16 years ago
  37. 628b96f Patch to build AST for property implementation declarations and by Fariborz Jahanian · 16 years ago
  38. c70bee8 Allow property in base class to be implemented in a derived class. by Fariborz Jahanian · 16 years ago
  39. 559c0c4 Continuation of work on ObjC2's properties. by Fariborz Jahanian · 16 years ago
  40. 3dd4ba4 Added property decl support for protocols. by Fariborz Jahanian · 16 years ago
  41. d9a3c33 Fixed a comment. by Fariborz Jahanian · 16 years ago
  42. 7e7e387 This patch adds support for declaraing properties in categories, by Fariborz Jahanian · 16 years ago
  43. 1de1e74 New AST representation for each objc2's property declaration. by Fariborz Jahanian · 16 years ago
  44. dae1a1a AST generation for objc2's property declarations. by Fariborz Jahanian · 17 years ago
  45. d6a07aa Add class and super class location info to ObjCInterfaceDecl... by Steve Naroff · 17 years ago
  46. 5619688 Fix a bug I introduced in my const'ification patch. by Chris Lattner · 17 years ago
  47. b048c98 This patch contains these changes: by Chris Lattner · 17 years ago
  48. e0def75 fix a number of const qualification bugs. by Chris Lattner · 17 years ago
  49. 0ed844b Introduce ContextDecl, patch by Argiris Kirtzidis! by Chris Lattner · 17 years ago
  50. f4af515 clean up property memory allocation to move it into the ast classes by Chris Lattner · 17 years ago
  51. 55d13b4 make property addition work list all other "add" methods. Do by Chris Lattner · 17 years ago
  52. f8d17a5 add the last two Create methods for decls, woo! by Chris Lattner · 17 years ago
  53. 75c9cae add two more Create methods. by Chris Lattner · 17 years ago
  54. 68c82cf simplify the way ObjCCategoryDecl's get their referenced protocols list by Chris Lattner · 17 years ago
  55. 61f9d41 Add create methods for ObjCCategoryDecl, ObjCForwardProtocolDecl, ObjCClassDecl. by Chris Lattner · 17 years ago
  56. c858105 minor cleanups, make getNumInstanceMethods always return unsigned. by Chris Lattner · 17 years ago
  57. cca59d7 Give ObjCProtocolDecl a Create method. by Chris Lattner · 17 years ago
  58. 0e77ba0 Add create methods for ObjCIvarDecl and ObjCInterfaceDecl by Chris Lattner · 17 years ago
  59. b06fa3b remove some dead arguments to ObjCMethodDecl. by Chris Lattner · 17 years ago
  60. 6c4ae5d Give ObjCMethodDecl a Create method. by Chris Lattner · 17 years ago
  61. 1e03a56 Split objc decl implementation out into DeclObjC.cpp by Chris Lattner · 17 years ago