- dc1031b ObjectiveC: Warn when 'readonly' property has explicit by Fariborz Jahanian · 12 years ago
- 1cd6fab ObjectiveC. Allow readonly properties without an explicit ownership by Fariborz Jahanian · 12 years ago
- 937ec1d ObjectiveC: Allow NS_RETURNS_INNER_POINTER annotation by Fariborz Jahanian · 12 years ago
- 27d4644 Fix recovery for missing * in objc property. by Eli Friedman · 12 years ago
- 8540b6e Objective-C: diagnose when synthesizing an ivar of by Fariborz Jahanian · 12 years ago
- 642038d Delete dead code. by Eli Friedman · 12 years ago
- 548fba9 Objective-C: Warn when IBOutletCollection property by Fariborz Jahanian · 12 years ago
- 6071af9 Objective-C: Another case of issuing warning about misusing by Fariborz Jahanian · 12 years ago
- a6ba40c Objective-C: Removes a bogus warning about auto-synthesis by Fariborz Jahanian · 12 years ago
- b1a4d37 Make helper functions static. by Benjamin Kramer · 12 years ago
- 8dbda51 Objective-C [qoi]: When an class conforms to multiple by Fariborz Jahanian · 12 years ago
- b8ed071 Objective-C arc: Diagnose when user attempts to by Fariborz Jahanian · 12 years ago
- 5543169 Replace ArrayRef<T>() with None, now that we have an implicit ArrayRef constructor from None by Dmitri Gribenko · 12 years ago
- f3f0f35 Objective-C: This is a small modification to my by Fariborz Jahanian · 12 years ago
- 80abce3 Objective-C arc: Improve disgnostics when 'weak' by Fariborz Jahanian · 12 years ago
- c775b1a Objective-C: When reporting on missing property accessor implementation in by Fariborz Jahanian · 12 years ago
- d9802dc Revert r177948. We decided that we do not want ObjC property redeclarations to inherit "deprecated". by Ted Kremenek · 12 years ago
- b846381 Be sure to check ARC conventions on the implicit method declarations by John McCall · 12 years ago
- d2615cc Add 178663 back. by Rafael Espindola · 12 years ago
- 4f8a3eb Revert 178663. by Rafael Espindola · 12 years ago
- 8f187f6 Don't compute a patched/semantic storage class. by Rafael Espindola · 12 years ago
- 0c70181 Objective-C: Provide fixit hints when warning by Fariborz Jahanian · 12 years ago
- b501aeb Objective-C: Property declaration overiding one in by Fariborz Jahanian · 12 years ago
- 5bdaef5 Objective-C: Tighten the rules when warning by Fariborz Jahanian · 12 years ago
- 1d0d2fe Objective-C: In my last path, also check by Fariborz Jahanian · 12 years ago
- 6114a3c Objective-C: Issue warning in couple of obscure cases by Fariborz Jahanian · 12 years ago
- cfaed8d objective-C: synthesize properties in order of their by Fariborz Jahanian · 12 years ago
- 2620229 objective-C: When implementing custom accessor method for by Fariborz Jahanian · 12 years ago
- b7b2565 objective-C: Fixes a bogus warning due to not setting by Fariborz Jahanian · 13 years ago
- a4475a6 QoI: -Wreadonly-iboutlet-property should have the warning's location on the property. by Ted Kremenek · 13 years ago
- 1256434 objective-C: don't issue bogus warning about by Fariborz Jahanian · 13 years ago
- b892d70 Eliminate Sema::CompareProperties(), which was walking over a pile of by Douglas Gregor · 13 years ago
- aabd094 Eliminate the oddly-named Sema::ComparePropertiesInBaseAndSuper, which by Douglas Gregor · 13 years ago
- 0dfe23c Replace some unnecessary O(N^2) lookups for properties with by Douglas Gregor · 13 years ago
- d329724 Rework the traversal of Objective-C categories and extensions to by Douglas Gregor · 13 years ago
- 7cdc457 Use Decl::getAvailability() rather than checking for the "unavailable" by Douglas Gregor · 13 years ago
- ad017fa Revert r170500. It over-zealously converted *ALL* things named Attributes, which is wrong here. by Bill Wendling · 13 years ago
- 277076a objective-C: Don't warn of unimplemented property of protocols in by Fariborz Jahanian · 13 years ago
- 094dbf9 Rename the 'Attributes' class to 'Attribute'. It's going to represent a single attribute in the future. by Bill Wendling · 13 years ago
- 135aa60 [objc] For the ARC error that is emitted when a synthesized property implementation by Argyrios Kyrtzidis · 13 years ago
- 55fc873 Sort all of Clang's files under 'lib', and fix up the broken headers uncovered. by Chandler Carruth · 13 years ago
- e63aedd Address Jordan's review: comments, spaces. by Anna Zaks · 13 years ago
- 9a14db3 Fix Objective-C implicit property synthesis for C++ classes so we use valid by Eli Friedman · 13 years ago
- b36ea37 Factor CollectClassPropertyImplementations out of Sema into AST by Anna Zaks · 13 years ago
- 04bec39 Move Sema::PropertyIfSetterOrGetter to ObjCMethodDecl::findPropertyDecl. by Jordan Rose · 13 years ago
- 9a1f7d8 Change Sema::PropertyIfSetterOrGetter to make use of isPropertyAccessor. by Jordan Rose · 13 years ago
- 1e4691b Rename ObjCMethodDecl::isSynthesized to isPropertyAccessor. by Jordan Rose · 13 years ago
- ad0ce53 Make getDefaultSynthIvarName() a member of ObjCPropertyDecl. by Anna Zaks · 13 years ago
- 5bf5c2e [analyzer] Add experimental ObjC invalidation method checker. by Anna Zaks · 13 years ago
- fd09088 objective-C: when diagnosing deprecated/unavailable usage of by Fariborz Jahanian · 13 years ago
- f224fb5 objective-C: don't warn about class extension property's by Fariborz Jahanian · 13 years ago
- 6defd9f objective-C: peroform property attribute consistency by Fariborz Jahanian · 13 years ago
- b3cd3c0 Fix some dead stores which the static analyzer warned about. No functionality by Richard Smith · 13 years ago
- a6e28f2 objective-C: When checking for valid overriden property by Fariborz Jahanian · 13 years ago
- a8eaf00 Fix undefined behavior: member function calls where 'this' is a null pointer. by Richard Smith · 13 years ago
- d48bcb2 Reduce duplicated hash map lookups. by Benjamin Kramer · 13 years ago
- d9f95b3 change function name in my last patch. // rdar://12103400 by Fariborz Jahanian · 13 years ago
- dad633b objective-C: Change rules for overriding properties in by Fariborz Jahanian · 13 years ago
- 0a7dd78 Screw around with ObjCRuntime some more, changing the by John McCall · 13 years ago
- d64c2eb Fix a pair of bugs relating to properties in ARC. by John McCall · 13 years ago
- fbffb5f Remove unused variables. by Benjamin Kramer · 13 years ago
- abd56c8 Attaching comments to declarations during parsing: handle more Objective-C declarations. by Dmitri Gribenko · 13 years ago
- 2578532 fix a typo in my last commit. I thought I recompiled, but apparently I did not. by Fariborz Jahanian · 13 years ago
- 20e7d99 objc diagnostic: pass IdentifierInfo* to the diagnostic system by Fariborz Jahanian · 13 years ago
- 7c16d58 objective-c mrc: Issue warning for mrc, as is done for arc, when by Fariborz Jahanian · 13 years ago
- c78ff27 objc: tweak my last patch to warn if class extension by Fariborz Jahanian · 13 years ago
- cea06d2 objective-c: Normally, a property cannot be both 'readonly' and having a by Fariborz Jahanian · 13 years ago
- e95f8ef objc: improved diagnostic when property autosynthesis may cause by Fariborz Jahanian · 13 years ago
- 260611a Restructure how the driver communicates information about the by John McCall · 13 years ago
- dd3284b objective-c: warn when autosynthesizing a property which has same by Fariborz Jahanian · 13 years ago
- 699c904 Documentation cleanup: by James Dennett · 13 years ago
- 390fff8 [libclang/AST] by Argyrios Kyrtzidis · 13 years ago
- 581deb3 Revert Decl's iterators back to pointer value_type rather than reference value_type by David Blaikie · 13 years ago
- 490a52b objective-c: fix a sema and IRGen crash when property by Fariborz Jahanian · 13 years ago
- 811bfcd Use the SelectorSet typedef more widely throughout Sema. by Benjamin Kramer · 13 years ago
- 5bf0e35 Remove unused argument in my last patch. by Fariborz Jahanian · 13 years ago
- edcc27f objective-c: When default synthesizing readonly IBOutlet properties by Fariborz Jahanian · 13 years ago
- 2b309fb objective-c: Warn if default synthesizing readonly IBOutlet properties by Fariborz Jahanian · 13 years ago
- 9abf88c objective-c: perform strict type checking on property by Fariborz Jahanian · 13 years ago
- 7441471 objc: avoid duplicate diagnostics on certain type mismatches by Fariborz Jahanian · 13 years ago
- e15db6f [AST/libclang] Speed up clang_getOverriddenCursors() considerably by reserving a bit by Argyrios Kyrtzidis · 13 years ago
- 5ea6661 Fixes a typo. note_xxx not not_xxx. by Fariborz Jahanian · 13 years ago
- d10099e Move Sema::RequireCompleteType() and Sema::RequireCompleteExprType() by Douglas Gregor · 13 years ago
- 975eef6 objective-c: warn for properties being default synthesized by Fariborz Jahanian · 13 years ago
- e4c043d Add a missing RequireCompleteType call when synthesizing properties. <rdar://problem/11333367>. by Eli Friedman · 13 years ago
- 262bc18 Remove the ref/value inconsistency in filter_decl_iterator. by David Blaikie · 13 years ago
- 1b7f9cb Fix PR10447: lazily building name lookup tables for DeclContexts was broken. by Richard Smith · 13 years ago
- 4e4d084 Unify naming of LangOptions variable/get function across the Clang stack (Lex to AST). by David Blaikie · 13 years ago
- f4b88a4 Remove BlockDeclRefExpr and introduce a bit on DeclRefExpr to by John McCall · 13 years ago
- 77bfb8b objective-c: provide fixit hint when atomic property does not by Fariborz Jahanian · 13 years ago
- f911242 [AST] When we @synthesize a property with a user-defined ivar name, by Argyrios Kyrtzidis · 13 years ago
- d7c15a6 [AST] Associate the getter/setter methods to a property of a objc class extension. by Argyrios Kyrtzidis · 13 years ago
- ac37150 objective-c default synthesis. classes which adopt protocol properties by Fariborz Jahanian · 13 years ago
- 977ea78 Don't crash on attempts to synthesize an invalid property. by John McCall · 13 years ago
- f7ccbad Basic: import SmallString<> into clang namespace by Dylan Noblesmith · 14 years ago
- 8fe83e1 Move a method from IdentifierTable.h out of line and remove the SmallString include. by Benjamin Kramer · 14 years ago
- ad7eff2 Further enhance comment for property in continuation class. by Fariborz Jahanian · 14 years ago
- ff2a0ec objc: comment the code which allows narroing of property object by Fariborz Jahanian · 14 years ago
- e235183 objective-c: When redeclaraing in continuation class a 'readonly' by Fariborz Jahanian · 14 years ago
- 3efd348 minor refactoring to improve compile-time performance. by Fariborz Jahanian · 14 years ago