1. fc8f0e1 fix a bunch of comment typos found by codespell. Patch by by Chris Lattner · 13 years ago
  2. 61750f2 de-sugared when accessing property reference type. by Fariborz Jahanian · 13 years ago
  3. 1408676 Implements property of reference types. Adding by Fariborz Jahanian · 13 years ago
  4. 0a0d2b1 Implement a new 'availability' attribute, that allows one to specify by Douglas Gregor · 13 years ago
  5. ff676cb Fixed source range for all DeclaratorDecl's. by Abramo Bagnara · 13 years ago
  6. 293a45e Improve the diagnostic for -Wcustom-atomic-properties. Suggestion by Fariborz! by Argyrios Kyrtzidis · 13 years ago
  7. 94659e4 Add -Wcustom-atomic-properties which warns if an atomic-by-default property has custom getter or setter. by Argyrios Kyrtzidis · 13 years ago
  8. b608b98 Give OpaqueValueExpr a source location, because its source location by Douglas Gregor · 14 years ago
  9. 411c25c Initialize a variable, found by Ted. by Fariborz Jahanian · 14 years ago
  10. 2b77cb8 Don't warn on missing 'copy' attribute on a 'block' by Fariborz Jahanian · 14 years ago
  11. e776f88 Guard lazy synthesis of provisional ivars under the new by Fariborz Jahanian · 14 years ago
  12. dd4430e Warn when synthesizing a property which is by Fariborz Jahanian · 14 years ago
  13. 7504966 ivars craeted for explicit @synthesize and those by Fariborz Jahanian · 14 years ago
  14. 88f5e9b Any property declared in a class extension might have user by Fariborz Jahanian · 14 years ago
  15. 4765fa0 Rename CXXExprWithTemporaries -> ExprWithCleanups; there's no theoretical by John McCall · 14 years ago
  16. f89e55a Calculate the value kind of an expression when it's created and by John McCall · 14 years ago
  17. a4ffd85 For an Objective-C @synthesize statement, e.g., by Douglas Gregor · 14 years ago
  18. 1c23e91 Kill off the remaining places which generate CK_Unknown casts. by John McCall · 14 years ago
  19. daa8e4e Assorted work leading towards the elimination of CK_Unknown. by John McCall · 14 years ago
  20. 2a28914 Check for duplicate declaration of a property in current and by Fariborz Jahanian · 14 years ago
  21. 5de74d1 Propagate the deprecated and unavailable attributes from a by John McCall · 14 years ago
  22. 788f489 Tweak diagnostics for redeclaration of a @property in a class extension where the redelcaration and original by Ted Kremenek · 14 years ago
  23. 0313f44 Check for ivar being a C++ object before attempting to by Fariborz Jahanian · 14 years ago
  24. fa43239 Put line number on the diagnostic. //rdar: //8550657. by Fariborz Jahanian · 14 years ago
  25. 2a6af6b Default synthesized ivars don't really have a location in the source. Using the location of the @implementation by Ted Kremenek · 14 years ago
  26. 4a2e9ea For properties declared in a @protocol and redeclared in a class extension, use the class extension by Ted Kremenek · 14 years ago
  27. a054fb4 Correctly register the class extension as the lexical DeclContext for ObjC methods declared with @property in class extensions. by Ted Kremenek · 14 years ago
  28. 8254aa6 For ObjCPropertyDecls in class extensions, use the class extension as the lexical DeclContext for newly created by Ted Kremenek · 14 years ago
  29. 53b9441 Split ObjCInterfaceDecl::ReferencedProtocols into two lists: ReferencedProtocols and AllReferencedProtocols. ReferencedProtocols by Ted Kremenek · 14 years ago
  30. d931b08 De-memberify the VarDecl and FunctionDecl StorageClass enums. by John McCall · 14 years ago
  31. 2d88708 Split out a header to hold APIs meant for the Sema implementation from Sema.h. by John McCall · 14 years ago
  32. 2de56d1 GCC didn't care for my attempt at API compatibility, so brute-force everything by John McCall · 14 years ago
  33. 50df6ae Remove the DenseSet dependency from Sema.h. by John McCall · 14 years ago
  34. 95f1b86 No need to default synthesize property if implementation by Fariborz Jahanian · 14 years ago
  35. cdaa6a8 Fix a bug in nonfragile-abi2 when attempting to diagnose by Fariborz Jahanian · 14 years ago
  36. 7cd088e Struggle mightily against header inclusion in Sema.h. by John McCall · 14 years ago
  37. 60d7b3a OwningExprResult -> ExprResult. This patch brought to you by by John McCall · 14 years ago
  38. d226f65 DeclPtrTy -> Decl * by John McCall · 14 years ago
  39. 4087f27 StringRef'ication of lots stuff, patch by Peter Davies! by Daniel Dunbar · 14 years ago
  40. e737f50 Move Sema's headers into include/clang/Sema, renaming a few along the way. by Douglas Gregor · 14 years ago
  41. 3fe1041 atch for implementation of objective-c's -Wselector by Fariborz Jahanian · 14 years ago
  42. ad51e74 Patch to synthesize property ivars on demand as by Fariborz Jahanian · 14 years ago
  43. d3635b9 Don't error when doing default property synthesis by Fariborz Jahanian · 14 years ago
  44. ae415dc Check on property attributes which are declared by Fariborz Jahanian · 14 years ago
  45. cfa6a27 This patch fixes a bug whereby, clang skipped by Fariborz Jahanian · 14 years ago
  46. 80aa1cd Patch to provide separate ASTs for multiple ObjC class extension by Fariborz Jahanian · 14 years ago
  47. bf1a028 Alter the interface of GetTypeForDeclarator to return a TypeSourceInfo*. by John McCall · 14 years ago
  48. 83a230c Remember type source information for Objective C property declarations. by John McCall · 14 years ago
  49. 62ac5d0 Misc. fixes to bring Objetive-C++'s handling of by Fariborz Jahanian · 14 years ago
  50. 23173d7 Teach CursorVisitor about duplicate ObjCPropertyDecls that can arise because of a current by Ted Kremenek · 14 years ago
  51. c12c5bb Substantially alter the design of the Objective C type AST by introducing by John McCall · 14 years ago
  52. 3c9034c Recognize when the named return value optimization applies in a by Douglas Gregor · 14 years ago
  53. 509d477 Implement new default property synthesis rules. Essentially, no longer by Fariborz Jahanian · 14 years ago
  54. 17cb326 This patch deals with Sema Part of Setter/Getter synthesis by Fariborz Jahanian · 14 years ago
  55. 738698d Do not issue warning on unimplemented property in the class, if it by Fariborz Jahanian · 14 years ago
  56. 9d84632 Properties cannot be synthesized by-dafult in by Fariborz Jahanian · 14 years ago
  57. d502a94 Improve on source location of diagnostic when default by Fariborz Jahanian · 14 years ago
  58. 16573fa Keep track of the actual storage specifier written on a variable or by Douglas Gregor · 14 years ago
  59. c83c687 Feed proper source-location information into Sema::LookupSingleResult, by Douglas Gregor · 14 years ago
  60. 4ecb25f Fixes a regression caused by implementing cstyle methods for objc. by Fariborz Jahanian · 14 years ago
  61. dba0b0b Minor clean up. by Fariborz Jahanian · 14 years ago
  62. 2846b2b default access for synthesize ivar is @protect. Fixes radar 7823675. by Fariborz Jahanian · 14 years ago
  63. e968657 Use cast<> + OpaquePtr.getAs<Decl> to add extra checking of our assumptions. by Ted Kremenek · 14 years ago
  64. 5fcd52a Fix possible null dereference by bailing out of CheckObjCPropertyAttributes() early if the Decl* is null. by Ted Kremenek · 14 years ago
  65. 29fa69a Sema/Obj-C: Narrow type, and simplify. by Daniel Dunbar · 14 years ago
  66. 842f07b Recognize __attribute__((NSObject)) directly applied by Fariborz Jahanian · 14 years ago
  67. f921a48 Improve diagnostic for @property/ivar type mismatch by including the types of the by Ted Kremenek · 14 years ago
  68. 22f757b Set the relevent attributes declared in class extension by Fariborz Jahanian · 14 years ago
  69. 9944c76 Simplify code (and remove 'dyn_cast') by using ObjCProperyDecl::findPropertyDecl(). by Ted Kremenek · 14 years ago
  70. 9f550ff Make 'findPropertyDecl()' a static method of ObjCPropertyDecl. by Ted Kremenek · 14 years ago
  71. 894ae6a Correctly determine if the @property has been previously declared. If by Ted Kremenek · 14 years ago
  72. e3d67bc Split Sema::ActOnProperty() into two recursive functions to clearly separate by Ted Kremenek · 14 years ago
  73. 2d2f936 Fix 80 col violations. by Ted Kremenek · 14 years ago
  74. 28685ab Move 'ActOn' methods to the beginning of the file by Ted Kremenek · 14 years ago
  75. 9d64c15 Split Sema logic for ObjC @property and @synthesize into a separate file. by Ted Kremenek · 14 years ago