| Commit message (Expand) | Author | Age | Files | Lines |
| * | This patch corrects problem in searching for a setter/getter method for | Fariborz Jahanian | 2008-12-02 | 1 | -24/+18 |
| * | Refactored checking on readonly property into a method. | Fariborz Jahanian | 2008-11-25 | 1 | -0/+20 |
| * | Rename NamedDecl::getIdentifierName() to ::getNameAsCString() and make it | Chris Lattner | 2008-11-24 | 1 | -2/+2 |
| * | Rename Selector::getName() to Selector::getAsString(), and add | Chris Lattner | 2008-11-24 | 1 | -1/+1 |
| * | Introduction the DeclarationName class, as a single, general method of | Douglas Gregor | 2008-11-17 | 1 | -2/+2 |
| * | Fix "possibly uninitialized" warning. | Daniel Dunbar | 2008-08-27 | 1 | -1/+1 |
| * | Add addPropertyMethods implementations for | Daniel Dunbar | 2008-08-27 | 1 | -12/+57 |
| * | Add ObjCPropertyDecl::isReadOnly. | Daniel Dunbar | 2008-08-26 | 1 | -0/+4 |
| * | constify ObjC*::getClassMethod,getInstanceMethod | Daniel Dunbar | 2008-08-26 | 1 | -10/+16 |
| * | Missed a file; part of: | Daniel Dunbar | 2008-08-26 | 1 | -0/+25 |
| * | Rename ObjCPropertyImplDecl::PropertyImplKind (consistency) | Daniel Dunbar | 2008-08-26 | 1 | -2/+2 |
| * | Fix return type for setter method. | Daniel Dunbar | 2008-08-26 | 1 | -1/+1 |
| * | Synthesize property setter method as we do for getter. | Daniel Dunbar | 2008-08-26 | 1 | -14/+38 |
| * | Fix attributes on Obj-C interfaces & methods. | Daniel Dunbar | 2008-08-20 | 1 | -4/+3 |
| * | Added ObjCAtDefsFieldDecl to represent FieldDecls created by @defs. | Ted Kremenek | 2008-08-20 | 1 | -0/+13 |
| * | More #include cleaning | Daniel Dunbar | 2008-08-11 | 1 | -0/+1 |
| * | When constructing an ObjCIvarDecl object in Sema, provide its visibility up f... | Ted Kremenek | 2008-07-23 | 1 | -2/+3 |
| * | move two more lists of protocols over to use ObjCList<ObjCProtocolDecl>, | Chris Lattner | 2008-07-21 | 1 | -34/+10 |
| * | introduce a new ObjCList templated class and start moving | Chris Lattner | 2008-07-21 | 1 | -21/+12 |
| * | rename setReferencedProtocolList -> addReferencedProtocols to | Chris Lattner | 2008-07-21 | 1 | -2/+2 |
| * | Switch initialization of the protocol list for an interface decl to use | Chris Lattner | 2008-07-21 | 1 | -3/+13 |
| * | Two fixes: | Steve Naroff | 2008-07-16 | 1 | -2/+2 |
| * | Reclaim memory owned by ObjCForwardProtocolDecls. | Ted Kremenek | 2008-06-06 | 1 | -0/+4 |
| * | Implement "Destroy" and destructor for ObjCClassDecl, allowing us to reclaim ... | Ted Kremenek | 2008-06-06 | 1 | -0/+17 |
| * | Implement "Destroy" and destructor for ObjCProtocolDecl, allowing us to recla... | Ted Kremenek | 2008-06-06 | 1 | -0/+25 |
| * | Because of a lack of a clear ownership role between ObjCInterfaceDecls and | Ted Kremenek | 2008-06-06 | 1 | -7/+5 |
| * | Initial work on additional memory collection for ObjC AST objects. We now | Ted Kremenek | 2008-06-06 | 1 | -4/+43 |
| * | Fix <rdar://problem/5987482> clang on xcode: null dereference in Sema::ActOnM... | Steve Naroff | 2008-06-05 | 1 | -0/+22 |
| * | Make sure we look through categories when searching for a classes property. | Steve Naroff | 2008-06-04 | 1 | -0/+7 |
| * | fix free/delete mismatch problem in add/mergeProperties (found by valgrind) | Nuno Lopes | 2008-05-10 | 1 | -4/+2 |
| * | Synthesized getter/setter method declarations need not have | Fariborz Jahanian | 2008-05-07 | 1 | -2/+3 |
| * | This patch introduces declaration of getter methods for ObjC2's | Fariborz Jahanian | 2008-05-07 | 1 | -0/+30 |
| * | percolate @optional/@required protocols down to ASTs for | Fariborz Jahanian | 2008-05-05 | 1 | -1/+2 |
| * | This patch is about merging ObjC2's properties declared in class | Fariborz Jahanian | 2008-05-02 | 1 | -0/+27 |
| * | Patch to build AST for property implementation declarations and | Fariborz Jahanian | 2008-04-23 | 1 | -0/+9 |
| * | Allow property in base class to be implemented in a | Fariborz Jahanian | 2008-04-21 | 1 | -0/+4 |
| * | Continuation of work on ObjC2's properties. | Fariborz Jahanian | 2008-04-21 | 1 | -0/+55 |
| * | Added property decl support for protocols. | Fariborz Jahanian | 2008-04-17 | 1 | -0/+12 |
| * | Fixed a comment. | Fariborz Jahanian | 2008-04-16 | 1 | -1/+1 |
| * | This patch adds support for declaraing properties in categories, | Fariborz Jahanian | 2008-04-16 | 1 | -2/+14 |
| * | New AST representation for each objc2's property declaration. | Fariborz Jahanian | 2008-04-14 | 1 | -1/+2 |
| * | AST generation for objc2's property declarations. | Fariborz Jahanian | 2008-04-11 | 1 | -12/+3 |
| * | Add class and super class location info to ObjCInterfaceDecl... | Steve Naroff | 2008-04-11 | 1 | -2/+3 |
| * | Fix a bug I introduced in my const'ification patch. | Chris Lattner | 2008-04-06 | 1 | -4/+3 |
| * | This patch contains these changes: | Chris Lattner | 2008-04-06 | 1 | -3/+2 |
| * | fix a number of const qualification bugs. | Chris Lattner | 2008-04-06 | 1 | -1/+1 |
| * | Introduce ContextDecl, patch by Argiris Kirtzidis! | Chris Lattner | 2008-04-04 | 1 | -14/+28 |
| * | clean up property memory allocation to move it into the ast classes | Chris Lattner | 2008-03-17 | 1 | -0/+12 |
| * | make property addition work list all other "add" methods. Do | Chris Lattner | 2008-03-16 | 1 | -0/+12 |
| * | add the last two Create methods for decls, woo! | Chris Lattner | 2008-03-16 | 1 | -0/+13 |