1. b5b155c objective-c: warn on use of property setters by Fariborz Jahanian · 12 years ago
  2. d5f1bd2 objective-c: Fixes a corner case and interesting bug. by Fariborz Jahanian · 12 years ago
  3. c1aa40c Apparently empty names are allowed here. by Benjamin Kramer · 12 years ago
  4. c470442 Simplify some users of DeclarationName::getNameKind. Fold getFETokenInfoAsVoid into its only caller. by Benjamin Kramer · 12 years ago
  5. 7d24e28 [libclang/AST] Index references of protocols in "@protocol(...)" syntax. by Argyrios Kyrtzidis · 12 years ago
  6. f5343ff Allow objc @() syntax for enum types. by Argyrios Kyrtzidis · 12 years ago
  7. 3eda6fa Only check NSArray/NSDictionary boxing method params once. by Jordy Rose · 12 years ago
  8. d2d0655 80-col violations and minor reformatting. No functionality change. by Jordy Rose · 12 years ago
  9. c8521fa Clean up ObjC boxing method checks by reducing duplicated code. by Jordy Rose · 12 years ago
  10. 99446d9 Don't crash on boxed strings when +stringWithUTF8String: is missing. by Jordy Rose · 12 years ago
  11. d10099e Move Sema::RequireCompleteType() and Sema::RequireCompleteExprType() by Douglas Gregor · 12 years ago
  12. e0fdadf Clean up changes suggested by Douglas Gregor: by Patrick Beard · 12 years ago
  13. 9879556 objective-arc: Retune my previous patch so warning by Fariborz Jahanian · 12 years ago
  14. 289677d objective-c arc: Issue warning under -Wreceiver-is-weak by Fariborz Jahanian · 12 years ago
  15. eb382ec Implements boxed expressions for Objective-C. <rdar://problem/10194391> by Patrick Beard · 12 years ago
  16. 878f850 objc-arc: provide a warning when 'receiver' of a message is 'weak' by Fariborz Jahanian · 12 years ago
  17. 4e4d084 Unify naming of LangOptions variable/get function across the Clang stack (Lex to AST). by David Blaikie · 12 years ago
  18. ebcb57a Add clang support for new Objective-C literal syntax for NSDictionary, NSArray, by Ted Kremenek · 12 years ago
  19. 3306ec1 After numerous requests, have Objective-C 'method declared here' notes mention the actual method. This looks better within an IDE, where text isn't always regurgitated in the presentation of a warning. Fixes radar 10914035. by Ted Kremenek · 12 years ago
  20. f64bc20 objective-c++: Type of an objc string literal is NSString, not 'id'. by Fariborz Jahanian · 12 years ago
  21. 999713e Rewrite variable capture within lambda expressions and blocks, by Douglas Gregor · 13 years ago
  22. ae1b4af Add fixits for ARC casting errors for implicit conversions as well. rdar://10289283 by Argyrios Kyrtzidis · 13 years ago
  23. d6cf912 Revert r145999. This turned out to be a bad idea. Unfortunately, 'id' is used so profusely by Ted Kremenek · 13 years ago
  24. f7ccbad Basic: import SmallString<> into clang namespace by Dylan Noblesmith · 13 years ago
  25. b942cb2 Implement implicit capture for lambda expressions. by Eli Friedman · 13 years ago
  26. 4cc9b10 objc: Issue diagnostic when receiver type is a forward class declaration and by Fariborz Jahanian · 13 years ago
  27. 52b6236 Look for declaration of CFBridgingRetain/CFBridgingRetain before by Fariborz Jahanian · 13 years ago
  28. 93962e5 Improve checking of explicit captures in a C++11 lambda expression: by Douglas Gregor · 13 years ago
  29. 16e46dd Make the callback object to Sema::CorrectTypo mandatory. by Kaelyn Uhrain · 13 years ago
  30. 7eb82f0 objc-arc: In various diagnostics mention by Fariborz Jahanian · 13 years ago
  31. 29c3f81 Fix a couples of issues in format strings checking. by Jean-Daniel Dupas · 13 years ago
  32. 2f4d88f Fix up the calls to CorrectTypo in Sema*ObjC.cpp to use callback by Kaelyn Uhrain · 13 years ago
  33. 746f5bc Add IsImplicit field in ObjCMessageExpr that is true when the message by Argyrios Kyrtzidis · 13 years ago
  34. b69b42c Start refactoring code for capturing variables and 'this' so that it is shared between lambda expressions and block literals. by Eli Friedman · 13 years ago
  35. 2e5c15b Move the definition-specific data of ObjCInterfaceDecl into a by Douglas Gregor · 13 years ago
  36. b76a97e objc: issue deprecated/unavailable diagnostic when by Fariborz Jahanian · 13 years ago
  37. f1d1ca5 When sending a message to a receiver that has "unknown any" type, by Douglas Gregor · 13 years ago
  38. b302996 Use Sema::RequireCompleteType to check for the completeness of by Douglas Gregor · 13 years ago
  39. ccc9e76 Don't crash on invalid objc code. by Argyrios Kyrtzidis · 13 years ago
  40. 7864435 Rip out CK_GetObjCProperty. by John McCall · 13 years ago
  41. 4b9c2d2 Change the AST representation of operations on Objective-C by John McCall · 13 years ago
  42. fc2eff5 objc-arc: desugar certain type and improve on diagnostic for by Fariborz Jahanian · 13 years ago
  43. 6d09f01 objective-c arc: type-casting of an objc pointer to by Fariborz Jahanian · 13 years ago
  44. 3c3b7f9 Restore r142914 and r142915, now with missing file and apparent by John McCall · 13 years ago
  45. 327a50f Revert r142914 and r142915, due to possibly missing file. by NAKAMURA Takumi · 13 years ago
  46. a1b852f Introduce a placeholder type for "pseudo object" by John McCall · 13 years ago
  47. 88a4cfd Strip qualifiers off the type of an implicit property defined by only a setter. by John McCall · 13 years ago
  48. 5acb0c9 Teach the ARC compiler to not require __bridge casts when by John McCall · 13 years ago
  49. 43bcdb2 Avoid duplicate unavailbility diagnostics in objc++. // rdar://10268422 by Fariborz Jahanian · 13 years ago
  50. 8d9ed79 ArrayRef'ize ObjCMessageExpr by Argyrios Kyrtzidis · 13 years ago
  51. 9513762 Pass all the locations of the selector identifiers for a message expression from the parser. by Argyrios Kyrtzidis · 13 years ago
  52. 2cf031d Allow the results of cf_returns_not_retained function by John McCall · 13 years ago
  53. c737acb Revert r139989 and r140031, which implemented the Objective-C type by Douglas Gregor · 13 years ago
  54. 1d4e8e9 objc - Treat type of 'self' in class methods as root of by Fariborz Jahanian · 13 years ago
  55. 33e56f3 Rename the ARC cast kinds to start with "ARC". by John McCall · 13 years ago
  56. 5c16d63 Don't produce 'instancetype' as the type of a message send expression. Map it down to 'id'. by Douglas Gregor · 13 years ago
  57. 0bcc9bc Contextually converting to 'id' is not a useful operation. Contextually by John McCall · 13 years ago
  58. 1d9b3b2 Give conversions of block pointers to ObjC pointers a different cast kind by John McCall · 13 years ago
  59. e97179c Implement the Objective-C 'instancetype' type, which is an alias of by Douglas Gregor · 13 years ago
  60. 819e745 Don't assert when diagnosing a missing cast of an unknown-anytype by John McCall · 13 years ago
  61. 80cb6e6 Warn on missing [super finalize] calls. by Nico Weber · 13 years ago
  62. 4906cf9 Be sure to do unary conversions on the operand to an ARC by John McCall · 13 years ago
  63. 9a1ecf0 Warn on missing [super dealloc] calls. by Nico Weber · 13 years ago
  64. 5cee119 Add support for C++0x unicode string and character literals, from Craig Topper! by Douglas Gregor · 13 years ago
  65. 5f9e272 remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.h imports by Chris Lattner · 13 years ago
  66. 4c91d89 With -Wselector, don't warn about unimplemented optional method by Fariborz Jahanian · 13 years ago
  67. 48218c6 In debugger mode, make ObjC message sends to unknown selectors return by John McCall · 13 years ago
  68. 7a084ec objc++-arc: diagnose assignment/cast of a weak-unavailable by Fariborz Jahanian · 13 years ago
  69. 7e5e5f4 In ARC, reclaim all return values of retainable type, not just those by John McCall · 13 years ago
  70. 9670e17 objc-arc: enforce performSelector rules in rejecting retaining selectors by Fariborz Jahanian · 13 years ago
  71. d8bba9c Add support for C++ namespace-aware typo correction, e.g., correcting by Douglas Gregor · 13 years ago
  72. 6326e05 Provide fix-it for '.' <-> '->' for Objective-C ivar/property access. by Fariborz Jahanian · 13 years ago
  73. 8295b7b objc-arc: Allow unbridged cast of retainable object to by Fariborz Jahanian · 13 years ago
  74. c8505ad objc-arc: Add support for unbridged cast of by Fariborz Jahanian · 13 years ago
  75. af97517 objc-arc: CodeGen part of unbridged cast of CF types. // rdar://9474349 by Fariborz Jahanian · 13 years ago
  76. 65aa688 Make more use of llvm::StringRef in various APIs. In particular, don't by Jay Foad · 13 years ago
  77. 1522a7c objc-arc: allow explicit unbridged casts if the source of the cast is a by Fariborz Jahanian · 13 years ago
  78. 71c482c Initialize a couple of variables to shut GCC up. by John McCall · 13 years ago
  79. 6c91615 For the purpose of @encode'ing, accept 'void' type by Fariborz Jahanian · 13 years ago
  80. f85e193 Automatic Reference Counting. by John McCall · 13 years ago
  81. 926df6c Implement Objective-C Related Result Type semantics. by Douglas Gregor · 13 years ago
  82. 3b5904b Emit an error when trying to @encode an incomplete type. by Argyrios Kyrtzidis · 13 years ago
  83. 89ebaed "note" location of forward class used as receiver of by Fariborz Jahanian · 13 years ago
  84. 109ec1b Fix a crash-on-invalid involving non-identifier names in a member by Douglas Gregor · 13 years ago
  85. 5272adf Enforce nonnull __attribute__ on Objective-C method calls. // rdar://9287695 by Fariborz Jahanian · 13 years ago
  86. 3e2193c Add a flag to StringLiteral to keep track of whether the string is a pascal string or not. by Anders Carlsson · 13 years ago
  87. 429bb27 Use ExprResult& instead of Expr *& in Sema by John Wiegley · 13 years ago
  88. 759abb4 Fix lookup for class messages sent to qualified-class by Fariborz Jahanian · 13 years ago
  89. 1408676 Implements property of reference types. Adding by Fariborz Jahanian · 13 years ago
  90. b460210 Also 'self' in blocks need be handled specially. // rdar://9181463 by Fariborz Jahanian · 13 years ago
  91. f2d74cc 'self' is objective-c's 'self' objc pointer only in by Fariborz Jahanian · 13 years ago
  92. 27569b0 Property setter/getter must be looked up in property type's by Fariborz Jahanian · 13 years ago
  93. 6147806 Lookup selector in protocol list of qualified objc type by Fariborz Jahanian · 13 years ago
  94. 02b0d65 Warn on usage of unavailable objc 'class' in by Fariborz Jahanian · 13 years ago
  95. 2a96bf5 Improve diagnostics on missing property decl. by Fariborz Jahanian · 14 years ago
  96. 41aadbc Improve diagnostics when property names an object type of by Fariborz Jahanian · 14 years ago
  97. 8348de3 Support for objc use of property-dot syntax as receiver by Fariborz Jahanian · 14 years ago
  98. 6b5a61b A few more tweaks to the blocks AST representation: by John McCall · 14 years ago
  99. 26743b2 Capture a few implicit references to 'self'. by John McCall · 14 years ago
  100. e00909a Tweak diagnostic: by Ted Kremenek · 14 years ago