1. b321c0c fix typo by Chris Lattner · 14 years ago
  2. 46f936e When parsing something that looks like an ill-formed by Douglas Gregor · 14 years ago
  3. a4ffd85 For an Objective-C @synthesize statement, e.g., by Douglas Gregor · 14 years ago
  4. 8113ecf Region-allocate all AttributeList objects from a factory object instead of manually managing them by Ted Kremenek · 14 years ago
  5. df81c2c Issues good diagnostic when @end is missing. // rdar://8283484 by Fariborz Jahanian · 14 years ago
  6. 46d545e Diagnose a coherant message when @interface by Fariborz Jahanian · 14 years ago
  7. 9bd1d8d Teach the C++ simple-type-specifier parser and tentative parses about by Douglas Gregor · 14 years ago
  8. 9c4bb2c Fix spelling error. by Cameron Esfahani · 14 years ago
  9. 42499be Use ParseObjCSelectorPiece for parsing getter and setter names in @property declarations. Fixes PR8169. by Anders Carlsson · 14 years ago
  10. 70c5ac7 Refactor code completion for expressions that occur as arguments in by Douglas Gregor · 14 years ago
  11. 9497a73 Implement automatic bracket insertion for Objective-C class message by Douglas Gregor · 14 years ago
  12. 304b752 Initialize TypeOrExpr to NULL to silence a false-positive uninitialized warning by Nick Lewycky · 14 years ago
  13. 0fbda68 Implement bracket insertion for Objective-C instance message sends as by Douglas Gregor · 14 years ago
  14. 9ba23b4 Improve recovery when there is a stray ']' or ')' before the ';' at by Douglas Gregor · 14 years ago
  15. 3846ca2 Use std::string instead of llvm::StringRef to avoid dangling ref. by Fariborz Jahanian · 14 years ago
  16. afbc681 Use getSpelling to get original text of the c++ operator token. (radar 8328250). by Fariborz Jahanian · 14 years ago
  17. be74740 Patch to allow alternative representation of c++ by Fariborz Jahanian · 14 years ago
  18. 5add754 handle :: in selectors in objc++ mode, rdar://8366474 by Chris Lattner · 14 years ago
  19. f312b1e One who seeks knowledge learns something new every day. by John McCall · 14 years ago
  20. 458433d Implement code completion for @selector expressions by Douglas Gregor · 14 years ago
  21. 60d7b3a OwningExprResult -> ExprResult. This patch brought to you by by John McCall · 14 years ago
  22. b3d8748 Abstract out passing around types and kill off ActionBase. by John McCall · 14 years ago
  23. d32b022 Provide code completion results for the context-sensitive Objective-C by Douglas Gregor · 14 years ago
  24. 9ae2f07 Kill off ExprArg (now just Expr*) and StmtArg (now just Stmt*). by John McCall · 14 years ago
  25. d097be8 Handling remaining rule for synthesize bitfields in by Fariborz Jahanian · 14 years ago
  26. 2ccccb3 Introduce a new code-completion point when we're parsing a by Douglas Gregor · 14 years ago
  27. ca0408f Sundry incremental steps towards killing off Action. by John McCall · 14 years ago
  28. d226f65 DeclPtrTy -> Decl * by John McCall · 14 years ago
  29. 1951085 Another step in the process of making the parser depend on Sema: by John McCall · 14 years ago
  30. e6b1bb6 Once code completion has completed, pass a "completion context" on to by Douglas Gregor · 14 years ago
  31. 3fe1041 atch for implementation of objective-c's -Wselector by Fariborz Jahanian · 14 years ago
  32. 40ed9a1 Support code completion for parameter names in Objective-C method declarations. by Douglas Gregor · 14 years ago
  33. 1f5537a Introduce a new code-completion point prior to an identifier in the by Douglas Gregor · 14 years ago
  34. 23c94db Move the "current scope" state from the Parser into Action. This by Douglas Gregor · 14 years ago
  35. f13ca06 Make the "extra ';' inside a struct or union" diagnostic more by Douglas Gregor · 14 years ago
  36. c59cb38 Minor tweaks on doug's objc recovery patch: the caller by Chris Lattner · 14 years ago
  37. 1b730e8 When we see the a '[' in a postfix expression in Objective-C, perform by Douglas Gregor · 14 years ago
  38. 8e254cf Implement a code-completion hook for the receiver of an Objective-C by Douglas Gregor · 14 years ago
  39. dc84534 Improve code completion in failure cases in two ways: by Douglas Gregor · 14 years ago
  40. 17cb326 This patch deals with Sema Part of Setter/Getter synthesis by Fariborz Jahanian · 14 years ago
  41. 5512ba5 Cleanup error recovery for a missing '-'|'+' by Fariborz Jahanian · 14 years ago
  42. 4e6c0d1 Rework Parser-Sema interface for Objective-C @catch exception object by Douglas Gregor · 14 years ago
  43. 8f5e3dd Improve the AST representation of Objective-C @try/@catch/@finally by Douglas Gregor · 14 years ago
  44. 6aa14d8 Implement parsing for message sends in Objective-C++. Message sends in by Douglas Gregor · 14 years ago
  45. 1569f95 Migrate the responsibility for turning the receiver name in an by Douglas Gregor · 14 years ago
  46. 2725ca8 Rework the Parser-Sema interaction for Objective-C message by Douglas Gregor · 14 years ago
  47. 02418c7 Fix crash on invalid code where a @throw statement is not followed by a ';' by Ted Kremenek · 14 years ago
  48. c83c687 Feed proper source-location information into Sema::LookupSingleResult, by Douglas Gregor · 14 years ago
  49. 94b24db Fix a -pedantic spurious warning involving @dynamic. by Fariborz Jahanian · 14 years ago
  50. 1dbca6e Introduce a parsing action to distinguish between class, instance, and by Douglas Gregor · 14 years ago
  51. 1e46136 fix a bug I noticed by inspection, correcting two reject-valid bugs. by Chris Lattner · 14 years ago
  52. 15faee1 Have the parser decide whether a message to super is a variable or by Chris Lattner · 14 years ago
  53. eb483eb fix PR6811 by not parsing 'super' as a magic expression in by Chris Lattner · 14 years ago
  54. 4f4fd92 Patch to implement gcc's cstyle arguments in objc methods. wip. by Fariborz Jahanian · 14 years ago
  55. e8f5a17 Implement code completion for Objective-C method declarations and by Douglas Gregor · 14 years ago
  56. 0bd0459 Patch to not build ivar ASTs when they are ilegally declared in categories. by Fariborz Jahanian · 14 years ago
  57. 05511fa Improve diagnosing when a method type does not start with '-'|'+' by Fariborz Jahanian · 14 years ago
  58. 809872e Issue better syntax error when objc's messaging by Fariborz Jahanian · 14 years ago
  59. 849b243 Reinstate my CodeModificationHint -> FixItHint renaming patch, without by Douglas Gregor · 14 years ago
  60. 275313c Revert r100008, which inexplicably breaks the clang-i686-darwin10 builder by Douglas Gregor · 14 years ago
  61. d0ebe08 Rename CodeModificationHint to FixItHint, since we've been using the by Douglas Gregor · 14 years ago
  62. 01f1bfc Fixes access rues for ivars declared in class implementations (radar 7547942). by Fariborz Jahanian · 14 years ago
  63. c3d43b7 Don't consume tokens past the end-of-file in an @interface. Fixes by Douglas Gregor · 14 years ago
  64. 83c481a Early support for declaring ivars in class extensions. wip. by Fariborz Jahanian · 15 years ago
  65. 9e04935 Allow GNU attributes to appear in an Objective-C method declaration by Ted Kremenek · 15 years ago
  66. e0097db Issue a bettter diagnostics for incorrect property setter name. (radar 7647953). by Fariborz Jahanian · 15 years ago
  67. 1e37765 Clean up ownership of 'AttributeList' objects in Parser. Apparently by Ted Kremenek · 15 years ago
  68. d219a3a Simplify setting of DeclContext for @catch variable (per Doug's comment). by Fariborz Jahanian · 15 years ago
  69. 2f764f1 Fix DeclContext of an objective-c @catch variable by Fariborz Jahanian · 15 years ago
  70. 18df52b Keep track of the source locations for each protocol reference in by Douglas Gregor · 15 years ago
  71. c38c3e1 Code-completion for @public, @protected, @private, @package. by Douglas Gregor · 15 years ago
  72. b6ac245 Whenever completing ordinary names for an Objective-C source, also by Douglas Gregor · 15 years ago
  73. 782f2f5 Change ObjCContainerDecl to contain the entire range for the '@end' by Ted Kremenek · 15 years ago
  74. 5ee56e9 Check in a rudimentary FullExpr class that isn't used anywhere yet. Rename Action::FullExpr to Action::MakeFullExpr to avoid name clashes. by Anders Carlsson · 15 years ago
  75. 5d80316 reduce nesting. by Chris Lattner · 15 years ago
  76. 9a0c85e Code completion for Objective-C @ keywords that are statements or expressions by Douglas Gregor · 15 years ago
  77. c464ae8 Code completion for Objective-C @ directives by Douglas Gregor · 15 years ago
  78. 29d9c1a remove some extraneous syntax: sourceloc implicitly converts to sourcerange. by Chris Lattner · 15 years ago
  79. d001454 Lift the ObjCPropertyCallback out of local scope to unbreak VS2005 builds. by John McCall · 15 years ago
  80. bbd37c6 Added rudimentary C++0x attribute support. by Sean Hunt · 15 years ago
  81. 4ad9685 Objective-C code completion within properties after "setter = " or by Douglas Gregor · 15 years ago
  82. d3c6854 Improve code completion for Objective-C message sends, so that we by Douglas Gregor · 15 years ago
  83. a93b108 Rename CodeCompleteObjCProperty to something more specific. No functionality change. by Douglas Gregor · 15 years ago
  84. 424b2a5 Code completion after @dynamic by Douglas Gregor · 15 years ago
  85. 322328b Code completion for Objective-C @synthesized. by Douglas Gregor · 15 years ago
  86. b328c42 Improve diagnostics and recovery when parsing @synthesized definitions by Douglas Gregor · 15 years ago
  87. 33ced0b Implement code completion for Objective-C category names in @interface by Douglas Gregor · 15 years ago
  88. 3b49aca Code completion for Objective-C class names after @interface, by Douglas Gregor · 15 years ago
  89. 083128f Code completion after @property, providing the names of forward-declared properties by Douglas Gregor · 15 years ago
  90. 55385fe Code completion for Objective-C properly lists by Douglas Gregor · 15 years ago
  91. 60b01cc Rename Objective-C message send completion functions to indicate that we're referring to message sends by Douglas Gregor · 15 years ago
  92. c09cba6 Pass source locations of identifiers referenced by @class through Action::ActOnForwardClassDeclaration(). by Ted Kremenek · 15 years ago
  93. 1ac7104 Fixes a typo, reported by Doug. by Fariborz Jahanian · 15 years ago
  94. 63e963c Handle case of missing '@end' in implementation context by Fariborz Jahanian · 15 years ago
  95. 496e45e Add FIXIT hint for -Wsemicolon-before-method-body by Ted Kremenek · 15 years ago
  96. dfcaf06 Make -Wsemicolon-before-method-body opt-in (and part of -Wextra). Addresses <rdar://problem/7381735>. by Ted Kremenek · 15 years ago
  97. c4df6d2 Add basic code completion support for ObjC messages. by Steve Naroff · 15 years ago
  98. d3fdcb5 Fix a bogus objective-c warning with -pedantic. (radar 7370882). by Fariborz Jahanian · 15 years ago
  99. c2253f5 add some fixit hints. by Chris Lattner · 15 years ago
  100. 54abf7d Change our basic strategy for avoiding deprecation warnings when the decl use by John McCall · 15 years ago