| Commit message (Expand) | Author | Age | Files | Lines |
* | Guard lazy synthesis of provisional ivars under the new | Fariborz Jahanian | 2011-01-03 | 1 | -1/+2 |
* | Warn when synthesizing a property which is | Fariborz Jahanian | 2010-12-17 | 1 | -0/+12 |
* | ivars craeted for explicit @synthesize and those | Fariborz Jahanian | 2010-12-15 | 1 | -1/+1 |
* | Any property declared in a class extension might have user | Fariborz Jahanian | 2010-12-10 | 1 | -1/+4 |
* | Rename CXXExprWithTemporaries -> ExprWithCleanups; there's no theoretical | John McCall | 2010-12-06 | 1 | -1/+1 |
* | Calculate the value kind of an expression when it's created and | John McCall | 2010-11-18 | 1 | -6/+6 |
* | For an Objective-C @synthesize statement, e.g., | Douglas Gregor | 2010-11-17 | 1 | -3/+5 |
* | Kill off the remaining places which generate CK_Unknown casts. | John McCall | 2010-11-16 | 1 | -8/+4 |
* | Assorted work leading towards the elimination of CK_Unknown. | John McCall | 2010-11-15 | 1 | -4/+9 |
* | Check for duplicate declaration of a property in current and | Fariborz Jahanian | 2010-11-10 | 1 | -9/+16 |
* | Propagate the deprecated and unavailable attributes from a | John McCall | 2010-11-10 | 1 | -0/+17 |
* | Tweak diagnostics for redeclaration of a @property in a class extension where... | Ted Kremenek | 2010-10-21 | 1 | -1/+10 |
* | Check for ivar being a C++ object before attempting to | Fariborz Jahanian | 2010-10-15 | 1 | -2/+4 |
* | Put line number on the diagnostic. //rdar: //8550657. | Fariborz Jahanian | 2010-10-14 | 1 | -1/+1 |
* | Default synthesized ivars don't really have a location in the source. Using ... | Ted Kremenek | 2010-09-24 | 1 | -3/+8 |
* | For properties declared in a @protocol and redeclared in a class extension, u... | Ted Kremenek | 2010-09-23 | 1 | -2/+7 |
* | Correctly register the class extension as the lexical DeclContext for ObjC me... | Ted Kremenek | 2010-09-21 | 1 | -6/+9 |
* | For ObjCPropertyDecls in class extensions, use the class extension as the lex... | Ted Kremenek | 2010-09-21 | 1 | -12/+18 |
* | Split ObjCInterfaceDecl::ReferencedProtocols into two lists: ReferencedProtoc... | Ted Kremenek | 2010-09-01 | 1 | -11/+16 |
* | De-memberify the VarDecl and FunctionDecl StorageClass enums. | John McCall | 2010-08-26 | 1 | -2/+2 |
* | Split out a header to hold APIs meant for the Sema implementation from Sema.h. | John McCall | 2010-08-25 | 1 | -1/+1 |
* | GCC didn't care for my attempt at API compatibility, so brute-force everything | John McCall | 2010-08-25 | 1 | -1/+1 |
* | Remove the DenseSet dependency from Sema.h. | John McCall | 2010-08-25 | 1 | -0/+1 |
* | No need to default synthesize property if implementation | Fariborz Jahanian | 2010-08-25 | 1 | -0/+6 |
* | Fix a bug in nonfragile-abi2 when attempting to diagnose | Fariborz Jahanian | 2010-08-24 | 1 | -2/+4 |
* | Struggle mightily against header inclusion in Sema.h. | John McCall | 2010-08-24 | 1 | -0/+1 |
* | OwningExprResult -> ExprResult. This patch brought to you by | John McCall | 2010-08-24 | 1 | -3/+3 |
* | DeclPtrTy -> Decl * | John McCall | 2010-08-21 | 1 | -50/+48 |
* | StringRef'ication of lots stuff, patch by Peter Davies! | Daniel Dunbar | 2010-08-17 | 1 | -1/+1 |
* | Move Sema's headers into include/clang/Sema, renaming a few along the way. | Douglas Gregor | 2010-08-12 | 1 | -2/+2 |
* | atch for implementation of objective-c's -Wselector | Fariborz Jahanian | 2010-07-22 | 1 | -1/+3 |
* | Patch to synthesize property ivars on demand as | Fariborz Jahanian | 2010-07-17 | 1 | -1/+19 |
* | Don't error when doing default property synthesis | Fariborz Jahanian | 2010-07-14 | 1 | -0/+4 |
* | Check on property attributes which are declared | Fariborz Jahanian | 2010-07-13 | 1 | -11/+15 |
* | This patch fixes a bug whereby, clang skipped | Fariborz Jahanian | 2010-06-29 | 1 | -38/+18 |
* | Patch to provide separate ASTs for multiple ObjC class extension | Fariborz Jahanian | 2010-06-22 | 1 | -1/+7 |
* | Alter the interface of GetTypeForDeclarator to return a TypeSourceInfo*. | John McCall | 2010-06-04 | 1 | -2/+2 |
* | Remember type source information for Objective C property declarations. | John McCall | 2010-06-04 | 1 | -7/+8 |
* | Misc. fixes to bring Objetive-C++'s handling of | Fariborz Jahanian | 2010-05-18 | 1 | -1/+10 |
* | Teach CursorVisitor about duplicate ObjCPropertyDecls that can arise because ... | Ted Kremenek | 2010-05-18 | 1 | -3/+16 |
* | Substantially alter the design of the Objective C type AST by introducing | John McCall | 2010-05-15 | 1 | -12/+9 |
* | Recognize when the named return value optimization applies in a | Douglas Gregor | 2010-05-15 | 1 | -2/+3 |
* | Implement new default property synthesis rules. Essentially, no longer | Fariborz Jahanian | 2010-05-14 | 1 | -8/+69 |
* | This patch deals with Sema Part of Setter/Getter synthesis | Fariborz Jahanian | 2010-05-05 | 1 | -3/+54 |
* | Do not issue warning on unimplemented property in the class, if it | Fariborz Jahanian | 2010-05-03 | 1 | -1/+31 |
* | Properties cannot be synthesized by-dafult in | Fariborz Jahanian | 2010-04-29 | 1 | -1/+1 |
* | Improve on source location of diagnostic when default | Fariborz Jahanian | 2010-04-21 | 1 | -1/+1 |
* | Keep track of the actual storage specifier written on a variable or | Douglas Gregor | 2010-04-19 | 1 | -0/+1 |
* | Feed proper source-location information into Sema::LookupSingleResult, | Douglas Gregor | 2010-04-15 | 1 | -1/+1 |
* | Fixes a regression caused by implementing cstyle methods | Fariborz Jahanian | 2010-04-09 | 1 | -1/+1 |