| Commit message (Expand) | Author | Age | Files | Lines |
* | After further discussion, rename attribute 'objc_disable_automatic_synthesis'... | Ted Kremenek | 2012-01-05 | 1 | -1/+1 |
* | objc: use objc_suppress_autosynthesis attribute on classes | Fariborz Jahanian | 2012-01-03 | 1 | -3/+4 |
* | Eliminate ObjCProtocolDecl's end-of-definition location. It is not | Douglas Gregor | 2012-01-02 | 1 | -1/+0 |
* | Move ObjCProtocolDecl::EndLoc into its DefinitionData, and give | Douglas Gregor | 2012-01-02 | 1 | -1/+1 |
* | Eliminate the ForwardDecl/InitiallyForwardDecl bits from ObjCProtocolDecl. Th... | Douglas Gregor | 2012-01-01 | 1 | -5/+3 |
* | Eliminate ObjCForwardProtocolDecl, which is redundant now that | Douglas Gregor | 2012-01-01 | 1 | -13/+5 |
* | Eliminate ASTMutationListener::UpdatedAttributeList, which is no | Douglas Gregor | 2012-01-01 | 1 | -6/+1 |
* | Wire up redeclaration chains for Objective-C protocols, so that both | Douglas Gregor | 2012-01-01 | 1 | -37/+45 |
* | Move the data that corresponds to the definition of a protocol into a | Douglas Gregor | 2012-01-01 | 1 | -8/+17 |
* | Eliminate ObjCClassDecl, which is redundant now that ObjCInterfaceDecl | Douglas Gregor | 2011-12-27 | 1 | -12/+3 |
* | objc QOI: Don't't warn about mismatch between attributes | Fariborz Jahanian | 2011-12-21 | 1 | -2/+5 |
* | Fix chaining of ObjCInterfaceDecl redeclarations | Douglas Gregor | 2011-12-16 | 1 | -15/+9 |
* | Move ObjCInterfaceDecl's "EndLoc" into DefinitionData, since it only | Douglas Gregor | 2011-12-15 | 1 | -9/+13 |
* | Keep track of all declarations of an Objective-C class (both forward | Douglas Gregor | 2011-12-15 | 1 | -49/+42 |
* | Move the definition-specific data of ObjCInterfaceDecl into a | Douglas Gregor | 2011-12-15 | 1 | -7/+11 |
* | Replace all comparisons between ObjCInterfaceDecl pointers with calls | Douglas Gregor | 2011-12-15 | 1 | -4/+4 |
* | objc: diagnose duplicate declaration of methods | Fariborz Jahanian | 2011-12-13 | 1 | -2/+14 |
* | Make sure that we infer __strong, etc. when we instantiate variables | Douglas Gregor | 2011-12-10 | 1 | -0/+4 |
* | Save category name loc in ObjCCategoryImplDecl, patch by Jason Haslam! | Argyrios Kyrtzidis | 2011-12-09 | 1 | -1/+1 |
* | Extend warnings for missing '@end'. | Erik Verbruggen | 2011-12-06 | 1 | -15/+32 |
* | objc: put out more coherent warning when method definition | Fariborz Jahanian | 2011-12-06 | 1 | -1/+3 |
* | When typo-correction an Objective-C superclass name, don't | Douglas Gregor | 2011-12-01 | 1 | -4/+9 |
* | [libclang] Fix operations (token annotation, getting cursor, etc.) with a fil... | Argyrios Kyrtzidis | 2011-11-23 | 1 | -0/+2 |
* | [libclang] Indexing API: Fix issues, mostly C++ related. | Argyrios Kyrtzidis | 2011-11-23 | 1 | -2/+3 |
* | Use Sema::RequireCompleteType to check for the completeness of | Douglas Gregor | 2011-11-14 | 1 | -12/+20 |
* | Don't crash when a duplicate interface/protocol is inside an extern "C" context. | Argyrios Kyrtzidis | 2011-11-13 | 1 | -19/+32 |
* | Add a method in ASTMutationListener for the last use of Decl's [is/set]Change... | Argyrios Kyrtzidis | 2011-11-12 | 1 | -2/+5 |
* | [PCH] When completing an objc forward reference, do not serialize the chain o... | Argyrios Kyrtzidis | 2011-11-12 | 1 | -10/+6 |
* | For the "'@end' is missing in implementation context" point at the location o... | Argyrios Kyrtzidis | 2011-10-27 | 1 | -1/+1 |
* | Fixes a minor hick up to my last patch. | Fariborz Jahanian | 2011-10-22 | 1 | -2/+6 |
* | objc: private methods can have their attributes, no diagnostic is required. | Fariborz Jahanian | 2011-10-22 | 1 | -7/+30 |
* | Introduce ASTConsumer::HandleTopLevelDeclInObjCContainer which accepts | Argyrios Kyrtzidis | 2011-10-17 | 1 | -0/+5 |
* | Keep track when a ObjC interface/protocol was initially created as a forward ... | Argyrios Kyrtzidis | 2011-10-17 | 1 | -2/+4 |
* | Really protect from infinite loop when there are objc method redeclarations. | Argyrios Kyrtzidis | 2011-10-14 | 1 | -2/+2 |
* | Keep track of objc method redeclarations in the same interface. | Argyrios Kyrtzidis | 2011-10-14 | 1 | -0/+4 |
* | Constant expression evaluation refactoring: | Richard Smith | 2011-10-10 | 1 | -11/+8 |
* | objc: Some refactoring of overriding method decl. code | Fariborz Jahanian | 2011-10-10 | 1 | -14/+30 |
* | Implicitly assume that a ObjC category to an unavailable interface is also un... | Argyrios Kyrtzidis | 2011-10-06 | 1 | -3/+4 |
* | When using an unavailable/deprecated interface Foo inside Foo's interface/imp... | Argyrios Kyrtzidis | 2011-10-06 | 1 | -9/+9 |
* | Fix the rewriter, rdar://10234024. | Argyrios Kyrtzidis | 2011-10-05 | 1 | -1/+2 |
* | Improve location fidelity of objc decls. | Argyrios Kyrtzidis | 2011-10-04 | 1 | -10/+10 |
* | Allow getting all source locations of selector identifiers in a ObjCMethodDecl. | Argyrios Kyrtzidis | 2011-10-03 | 1 | -7/+8 |
* | Pass from the parser the locations of selector identifiers when creating | Argyrios Kyrtzidis | 2011-10-03 | 1 | -3/+4 |
* | Don't keep NumSelectorArgs in the ObjCMethodDecl, the number can be derived f... | Argyrios Kyrtzidis | 2011-10-03 | 1 | -2/+1 |
* | Tweak -Wobjc-missing-super-calls to not warning about missing [super dealloc]... | Ted Kremenek | 2011-09-28 | 1 | -2/+3 |
* | objcetive-c-arc: When overriding a method, its ns_consumed patameter | Fariborz Jahanian | 2011-09-27 | 1 | -3/+30 |
* | Rename Diagnostic to DiagnosticsEngine as per issue 5397 | David Blaikie | 2011-09-25 | 1 | -3/+4 |
* | Switch assert(0/false) llvm_unreachable. | David Blaikie | 2011-09-23 | 1 | -1/+1 |
* | Give conversions of block pointers to ObjC pointers a different cast kind | John McCall | 2011-09-09 | 1 | -1/+6 |
* | Implement the Objective-C 'instancetype' type, which is an alias of | Douglas Gregor | 2011-09-08 | 1 | -17/+36 |