| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | propagate attributes onto property decls. | Chris Lattner | 2009-02-16 | 1 | -5/+7 |
* | Untabify. | Ben Laurie | 2009-02-16 | 1 | -2/+2 |
* | simplify some code. | Chris Lattner | 2009-02-14 | 1 | -8/+7 |
* | Some name-lookup-related fixes, from Piotr Rak! | Douglas Gregor | 2009-02-04 | 1 | -5/+5 |
* | Fix <rdar://problem/6552648> error: redefinition of 'XCElementAnchorDelegate'... | Steve Naroff | 2009-02-04 | 1 | -12/+27 |
* | Add a macro-based enumeration of all of the Decl nodes (like we do | Douglas Gregor | 2009-02-02 | 1 | -4/+4 |
* | Eliminated LookupCriteria, whose creation was causing a bottleneck for | Douglas Gregor | 2009-01-30 | 1 | -8/+8 |
* | diags moved, so these casts are no longer needed. | Chris Lattner | 2009-01-29 | 1 | -2/+2 |
* | Suppress a warning | Douglas Gregor | 2009-01-29 | 1 | -2/+2 |
* | move library-specific diagnostic headers into library private dirs. Reduce | Chris Lattner | 2009-01-29 | 1 | -1/+0 |
* | Refactor Sema::LookupDecl() into 2 functions: LookupDeclInScope() and LookupD... | Steve Naroff | 2009-01-29 | 1 | -8/+8 |
* | Split the single monolithic DiagnosticKinds.def file into one | Chris Lattner | 2009-01-27 | 1 | -1/+1 |
* | Remove ScopedDecl, collapsing all of its functionality into Decl, so | Douglas Gregor | 2009-01-20 | 1 | -8/+8 |
* | Type of property and its ivar is more restrictive | Fariborz Jahanian | 2009-01-19 | 1 | -0/+15 |
* | Diagnose when method parameter is an object. | Fariborz Jahanian | 2009-01-17 | 1 | -0/+5 |
* | Cleanup DeclContext::addDecl and DeclContext::insert interface, from Piotr Rak | Douglas Gregor | 2009-01-12 | 1 | -18/+18 |
* | Patch to supprt case of readonly property being | Fariborz Jahanian | 2009-01-12 | 1 | -0/+45 |
* | Convert property implementation to DeclContext::addDecl(). | Steve Naroff | 2009-01-11 | 1 | -10/+4 |
* | This patch removes mergeProperties and does the property lookup | Fariborz Jahanian | 2009-01-09 | 1 | -11/+2 |
* | Replace DeclContext's vector of ScopedDecl pointers with a linked list | Douglas Gregor | 2009-01-09 | 1 | -6/+4 |
* | Provide a new kind of iterator, the specific_decl_iterator, that | Douglas Gregor | 2009-01-09 | 1 | -2/+2 |
* | Move property API's up to ObjCContainerDecl (removing a lot of duplicate code). | Steve Naroff | 2009-01-09 | 1 | -42/+27 |
* | Addressed the issue in <rdar://problem/6479085>, where we failed to | Douglas Gregor | 2009-01-09 | 1 | -21/+50 |
* | Adding support for ObjC methods which have c-style | Fariborz Jahanian | 2009-01-09 | 1 | -0/+1 |
* | Move FIXME to a better location. | Steve Naroff | 2009-01-08 | 1 | -5/+5 |
* | Removed ObjCContainerDecl::getPropertyMethods()...doesn't belong in the AST. | Steve Naroff | 2009-01-08 | 1 | -1/+53 |
* | This is a large/messy diff that unifies the ObjC AST's with DeclContext. | Steve Naroff | 2009-01-08 | 1 | -56/+53 |
* | Objc's compatibility-alias semantics and code | Fariborz Jahanian | 2009-01-08 | 1 | -0/+9 |
* | Allow Objective-C entities to be declared within a transparent context | Douglas Gregor | 2009-01-06 | 1 | -1/+1 |
* | Remove hasKind(). Use existing getKind(). | Fariborz Jahanian | 2008-12-29 | 1 | -2/+2 |
* | Patch to remove bogus warning in case of @dynamic | Fariborz Jahanian | 2008-12-22 | 1 | -5/+12 |
* | Finish up saving original parameter type and | Fariborz Jahanian | 2008-12-20 | 1 | -6/+16 |
* | This patch will build the Records lazily per Steve's comments. | Fariborz Jahanian | 2008-12-17 | 1 | -1/+0 |
* | Move the other Sema::ActOnLinkageSpec to SemaDeclCXX. | Chris Lattner | 2008-12-17 | 1 | -2/+50 |
* | Semantics of @protocol attributes. | Fariborz Jahanian | 2008-12-17 | 1 | -3/+14 |
* | Silence a couple more operator precedence warnings; this shouldn't | Eli Friedman | 2008-12-16 | 1 | -4/+4 |
* | Patch to check for ObjC's property type. | Fariborz Jahanian | 2008-12-16 | 1 | -0/+4 |
* | Name of addLayoutToClass is confusing as no layout calculation | Fariborz Jahanian | 2008-12-15 | 1 | -1/+1 |
* | Add storage layout to ObjC classes. | Fariborz Jahanian | 2008-12-13 | 1 | -0/+1 |
* | Unifies the name-lookup mechanisms used in various parts of the AST | Douglas Gregor | 2008-12-11 | 1 | -1/+1 |
* | Support for implementation of property in the case where | Fariborz Jahanian | 2008-12-09 | 1 | -1/+1 |
* | Sema::ActOnMethodDeclaration(): Make sure we perform the default function/arr... | Steve Naroff | 2008-12-09 | 1 | -2/+7 |
* | Changed 'readonly' 'retain/copy' diagnostics into | Fariborz Jahanian | 2008-12-08 | 1 | -2/+3 |
* | Since we do not allow a readonly property to be 'copy'retain', we | Fariborz Jahanian | 2008-12-08 | 1 | -5/+1 |
* | Move Sema::isTemplateParameterDecl to Decl::isTemplateParameter, where it bel... | Douglas Gregor | 2008-12-08 | 1 | -2/+2 |
* | Setters returning a typedef of 'void' should not cause error. | Fariborz Jahanian | 2008-12-06 | 1 | -1/+2 |
* | Use of properties declared in protocols in the category | Fariborz Jahanian | 2008-12-06 | 1 | -6/+56 |
* | Improve error reporting of property and setter/getter | Fariborz Jahanian | 2008-12-06 | 1 | -2/+6 |
* | Check for correct'void' return type for setter methods. | Fariborz Jahanian | 2008-12-06 | 1 | -1/+1 |
* | Changed a 'FIXME' into new comment. Added a test case | Fariborz Jahanian | 2008-12-06 | 1 | -1/+3 |