1. 5b629aa Parse attributes on enumerators and instantiate attributes on enum decls. by John McCall · 14 years ago
  2. 9bd1d8d Teach the C++ simple-type-specifier parser and tentative parses about by Douglas Gregor · 14 years ago
  3. 369ea27 Diagnose the declaration of template template parameters that by Douglas Gregor · 14 years ago
  4. a25c408 Tag references shouldn't ever get template parameter lists. by John McCall · 14 years ago
  5. 9a34edb Redirect templated friend class decls to a new Sema callback and by John McCall · 14 years ago
  6. 75ab414 Provide code completion for types after the '^' that starts a block literal. by Douglas Gregor · 14 years ago
  7. 99ea734 When we are missing the ',' or '>' to terminate a template parameter by Douglas Gregor · 14 years ago
  8. d54eb44 Parse default arguments within member functions in source order, from by Douglas Gregor · 14 years ago
  9. 9c4bb2c Fix spelling error. by Cameron Esfahani · 14 years ago
  10. 334d47e Add parsing support for Microsoft attributes. MS attributes will just be skipped and not inserted into the AST for now. by Francois Pichet · 14 years ago
  11. 1274ccd Implement C++0x scoped enumerations, from Daniel Wallin! (and tweaked a by Douglas Gregor · 14 years ago
  12. a6eb5f8 When we encounter a '==' in a context expecting a '=', assume the user made a typo: by Argyrios Kyrtzidis · 14 years ago
  13. 42499be Use ParseObjCSelectorPiece for parsing getter and setter names in @property declarations. Fixes PR8169. by Anders Carlsson · 14 years ago
  14. dab60ad Implement the C++0x "trailing return type" feature, e.g., by Douglas Gregor · 14 years ago
  15. 6229c8e enhance tentative parsing to handle ms extensions, patch by Martin Vejnar! by Chris Lattner · 14 years ago
  16. c5be7b0 vla expressions used in __typeof__ must be evaluated. Fixes rdar://8476159. by Fariborz Jahanian · 14 years ago
  17. 8577364 When we have two identifiers in a row in Objective-C, make sure to by Douglas Gregor · 14 years ago
  18. 1a18600 Don't warn for an unused label if it has 'unused' attribute. Fixes rdar://8483139. by Argyrios Kyrtzidis · 14 years ago
  19. 37bf9d2 Allow the use of C++0x deleted functions as an extension in C++98. by Anders Carlsson · 14 years ago
  20. 70c5ac7 Refactor code completion for expressions that occur as arguments in by Douglas Gregor · 14 years ago
  21. ac5fd84 Continue parsing more postfix expressions, even after semantic by Douglas Gregor · 14 years ago
  22. 9485989 Improve recovery when the middle expression of a ternary operator is ill-formed by Douglas Gregor · 14 years ago
  23. 200b292 When we run into an error parsing or type-checking the left-hand side by Douglas Gregor · 14 years ago
  24. 9fe871a rename variable, 'Type' seems to be present in by Gabor Greif · 14 years ago
  25. c7b6d88 Implement code completion for Objective-C class message sends that are by Douglas Gregor · 14 years ago
  26. 9497a73 Implement automatic bracket insertion for Objective-C class message by Douglas Gregor · 14 years ago
  27. 77328d1 Handle bracket insertion for Objective-C class messages in a very by Douglas Gregor · 14 years ago
  28. 304b752 Initialize TypeOrExpr to NULL to silence a false-positive uninitialized warning by Nick Lewycky · 14 years ago
  29. 78edf51 Improve code completion for Objective-C message sends when the opening by Douglas Gregor · 14 years ago
  30. fa885c1 Extend bracket insertion to message sends to "super", e.g., by Douglas Gregor · 14 years ago
  31. b65042d Extend bracket insertion to handle nullary selectors, e.g. by Douglas Gregor · 14 years ago
  32. 0fbda68 Implement bracket insertion for Objective-C instance message sends as by Douglas Gregor · 14 years ago
  33. 0268810 Introduce a new code-completion context for a parenthesized by Douglas Gregor · 14 years ago
  34. 560a921 Revert "CMake: Update to use standard CMake dependency tracking facilities instead" by Michael J. Spencer · 14 years ago
  35. be0f7bd When parsing default function arguments, do not mark any declarations by Douglas Gregor · 14 years ago
  36. bd7c849 Eli helped me understand how evaluation contexts work. by Sebastian Redl · 14 years ago
  37. 5a7f349 CMake: Update to use standard CMake dependency tracking facilities instead by Michael J. Spencer · 14 years ago
  38. 02bc21a Parse the noexcept operator and stub out sema. by Sebastian Redl · 14 years ago
  39. 80c60f7 When we parse a pragma, keep track of how that pragma was originally by Douglas Gregor · 14 years ago
  40. a1a0478 Eliminate the comma locations from all of the Sema routines that deal by Douglas Gregor · 14 years ago
  41. 3d37c0a Add proper type-source information to UnaryTypeTraitExpr, including by Douglas Gregor · 14 years ago
  42. 4eb4f0f Fix a few minor issues with parsing and semantic analysis of C++ by Douglas Gregor · 14 years ago
  43. bfae8bd Clean up some of the CMake dependencies by Douglas Gregor · 14 years ago
  44. 01b7c30 Microsoft's __uuidof operator implementation part 1. by Francois Pichet · 14 years ago
  45. ab6677e Provide proper type-source location information for by Douglas Gregor · 14 years ago
  46. 837b1a3 Improve error recovery when we see ':' and expect a ';'. by John McCall · 14 years ago
  47. 9ba23b4 Improve recovery when there is a stray ']' or ')' before the ';' at by Douglas Gregor · 14 years ago
  48. 751f692 Improve recovery when a comma is missing between enumerators in an by Douglas Gregor · 14 years ago
  49. b1f6fa4 Improve diagnostic and recovery when missing a comma between base or by Douglas Gregor · 14 years ago
  50. 3846ca2 Use std::string instead of llvm::StringRef to avoid dangling ref. by Fariborz Jahanian · 14 years ago
  51. afbc681 Use getSpelling to get original text of the c++ operator token. (radar 8328250). by Fariborz Jahanian · 14 years ago
  52. 52fc314 Add symantic support for the Pascal calling convention via by Dawn Perchik · 14 years ago
  53. be74740 Patch to allow alternative representation of c++ by Fariborz Jahanian · 14 years ago
  54. d4b25cb Implement __has_virtual_destructor. Patch by Steven Watanabe. by Sebastian Redl · 14 years ago
  55. f65086b when emitting an error about a missing } in a compound statement, emit by Chris Lattner · 14 years ago
  56. c238f09 Implement the __has_nothrow trait family, by Steven Watanabe. by Sebastian Redl · 14 years ago
  57. 88e64ca Enable inline namespaces in C++03 as an extension. by Sebastian Redl · 14 years ago
  58. 6cf7502 Revert my user-defined literal commits - r1124{58,60,67} pending by Sean Hunt · 14 years ago
  59. 0016d51 Implement C++0x user-defined string literals. by Sean Hunt · 14 years ago
  60. f459beb ObjClang++: Allow declaration of block variable in a collection by Fariborz Jahanian · 14 years ago
  61. 0133f52 Basic code completion support for the base and member initializers in by Douglas Gregor · 14 years ago
  62. d078e64 Parser support for inline namespaces by Sebastian Redl · 14 years ago
  63. 5add754 handle :: in selectors in objc++ mode, rdar://8366474 by Chris Lattner · 14 years ago
  64. 1a480c4 Suggest "const" and "volatile" code completions after a function by Douglas Gregor · 14 years ago
  65. b1e0353 Fix CMake dependencies, from Fernando Pelliccioni! by Douglas Gregor · 14 years ago
  66. 9c72c60 Propagate whether an id-expression is the immediate argument of by John McCall · 14 years ago
  67. f312b1e One who seeks knowledge learns something new every day. by John McCall · 14 years ago
  68. 458433d Implement code completion for @selector expressions by Douglas Gregor · 14 years ago
  69. c1a3e5e Initialize the translation-unit scope before lexing the first by Douglas Gregor · 14 years ago
  70. 55817af Introduce a preprocessor code-completion hook for contexts where we by Douglas Gregor · 14 years ago
  71. 384aff8 Remove Sema.h's dependency on DeclCXX.h. by John McCall · 14 years ago
  72. 911093e Reformatting. by John McCall · 14 years ago
  73. 124300e Preserve invalidity of typeof operands in C++. by John McCall · 14 years ago
  74. f29c523 Implement code completion for preprocessor expressions and in macro arguments. by Douglas Gregor · 14 years ago
  75. 1fbb447 Implement preprocessor code completion where a macro name is expected, by Douglas Gregor · 14 years ago
  76. f44e854 Introduce basic code-completion support for preprocessor directives, by Douglas Gregor · 14 years ago
  77. 09a63c9 Parse all kinds of declarations as part of a linkage-specification, by Douglas Gregor · 14 years ago
  78. 60d7b3a OwningExprResult -> ExprResult. This patch brought to you by by John McCall · 14 years ago
  79. b3d8748 Abstract out passing around types and kill off ActionBase. by John McCall · 14 years ago
  80. d32b022 Provide code completion results for the context-sensitive Objective-C by Douglas Gregor · 14 years ago
  81. 9ae2f07 Kill off ExprArg (now just Expr*) and StmtArg (now just Stmt*). by John McCall · 14 years ago
  82. d097be8 Handling remaining rule for synthesize bitfields in by Fariborz Jahanian · 14 years ago
  83. fb62941 Introduce a code-completion hook for the Objective-C collection by Douglas Gregor · 14 years ago
  84. 2ccccb3 Introduce a new code-completion point when we're parsing a by Douglas Gregor · 14 years ago
  85. ae2fb14 When complaining about a duplicate declspec, provide a Fix-It that by Douglas Gregor · 14 years ago
  86. 2b5289b Push DeclGroupRefs and TemplateNames in an opaque but type-safe way by John McCall · 14 years ago
  87. 1f58816 Kill off Parser::TemplateParameterList to avoid misparses. by John McCall · 14 years ago
  88. ca0408f Sundry incremental steps towards killing off Action. by John McCall · 14 years ago
  89. d226f65 DeclPtrTy -> Decl * by John McCall · 14 years ago
  90. 1951085 Another step in the process of making the parser depend on Sema: by John McCall · 14 years ago
  91. 46877cd Get rid of extra nesting when checking for invalid type, per Doug's comment. by Fariborz Jahanian · 14 years ago
  92. 1b72fa7 Diagnose if type of iboutletcollection attribute is a builtin type. by Fariborz Jahanian · 14 years ago
  93. e789685 Add a slightly better hack for microsoft style inline asm, patch by Per Linden! by Chris Lattner · 14 years ago
  94. d657742 Fix a crash when parsing malformed out-of-line member function by Fariborz Jahanian · 14 years ago
  95. 646395b -Make TokenID of IdentifierInfo read-only, remove setTokenID(). by Argyrios Kyrtzidis · 14 years ago
  96. e6b1bb6 Once code completion has completed, pass a "completion context" on to by Douglas Gregor · 14 years ago
  97. 35cc962 Added vecreturn attribute parsing. by John Thompson · 14 years ago
  98. 219cffc Change warning about incomplete parsing of C++ default arg to error and provide a test case; thanks Doug! by Argyrios Kyrtzidis · 14 years ago
  99. f315fd6 Replace a parser assertion with a warning, suggestion by Doug. by Argyrios Kyrtzidis · 14 years ago
  100. d420663 The pre-increment/pre-decrement grammar in C++ differs from that in C, by Douglas Gregor · 14 years ago