1. 18df52b Keep track of the source locations for each protocol reference in by Douglas Gregor · 15 years ago
  2. 60fa3cf Implement access declarations. Most of the work here is parsing them, which by John McCall · 15 years ago
  3. f6e6fc8 Implement C++ [basic.lookup.classref]p3, which states how the type by Douglas Gregor · 15 years ago
  4. 7ba107a Incremental progress on using declarations. Split UnresolvedUsingDecl into by John McCall · 15 years ago
  5. c09cba6 Pass source locations of identifiers referenced by @class through Action::ActOnForwardClassDeclaration(). by Ted Kremenek · 15 years ago
  6. 12c118a Switch parsing of using declarations over to ParseUnqualifiedId. by Douglas Gregor · 15 years ago
  7. 014e88d Parsing and semantic analysis for template-ids that name overloaded by Douglas Gregor · 15 years ago
  8. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
  9. 2dd078a Rewrite of our handling of name lookup in C++ member access expressions, e.g., by Douglas Gregor · 15 years ago
  10. 595adc1 Set the access specifier for using decls. by Anders Carlsson · 15 years ago
  11. 42c39f3 When we know that we are parsing a class-name, implicitly construct a by Douglas Gregor · 15 years ago
  12. 495c35d Improve support for out-of-line definitions of nested templates and by Douglas Gregor · 15 years ago
  13. 0c6139d Make it possible for using decls to point to operators. Fixes PR4441. by Anders Carlsson · 15 years ago
  14. 9cfbe48 Parsing and AST support for using declarations, from John Thompson! by Douglas Gregor · 15 years ago
  15. ace6507 teach -parse-noop about int128_t and friends. by Chris Lattner · 15 years ago
  16. c45c232 Parsing and AST representation for dependent template names that occur by Douglas Gregor · 15 years ago
  17. 7532dc6 Improve the representation of template names in the AST. This by Douglas Gregor · 15 years ago
  18. 682bf92 Push DeclGroup much farther throughout the compiler. Now the various by Chris Lattner · 15 years ago
  19. b28317a Introduce a new OpaquePtr<N> struct type, which is a simple POD wrapper for a by Chris Lattner · 15 years ago
  20. f26d510 fix "Comment#1" from PR3872 by Chris Lattner · 15 years ago
  21. f53597f Convert a bunch of actions to smart pointers, and also bring PrintParserCallbacks a bit more in line with reality. by Sebastian Redl · 15 years ago
  22. 49f28ca rename PrettyStackTraceDecl -> PrettyStackTraceActionsDecl. by Chris Lattner · 15 years ago
  23. 0102c30 When the parser is live, print out the location and spelling of its current token. by Chris Lattner · 15 years ago
  24. 21ff9c9 When parsing a function body, add it to the crash stack, giving us something by Chris Lattner · 15 years ago
  25. 39a8de1 Implement parsing of nested-name-specifiers that involve template-ids, e.g., by Douglas Gregor · 15 years ago
  26. 55f6b14 Start processing template-ids as types when the template-name refers by Douglas Gregor · 15 years ago
  27. b696ea3 Diagnose ambiguities in getTypeName. Fixes http://llvm.org/bugs/show_bug.cgi?id=3475 by Douglas Gregor · 15 years ago
  28. b43a50f Name change (isTypeName->getTypeName). by Steve Naroff · 16 years ago
  29. e1ae1e9 Switch MinimalAction from new/delete'ing its TypeNameInfo to by Chris Lattner · 16 years ago
  30. d6fb7ef Ultrasimplistic sketch for the parsing of C++ template-ids. This won't by Douglas Gregor · 16 years ago
  31. 2def483 Updated IdentifierResolver to deal with DeclarationNames. The names of by Douglas Gregor · 16 years ago
  32. eb83ecd Implement support for C++ nested-name-specifiers ('foo::bar::x') in the Parser side. by Argyrios Kyrtzidis · 16 years ago
  33. b48fe38 Add support for parsing and representing C++ constructor declarations. by Douglas Gregor · 16 years ago
  34. e10b0f2 "One" line fix for -parse-noop failure, "id" and several other things by Daniel Dunbar · 16 years ago
  35. 914701e Move AsmLabel into Declarator instead of just a parameter to ActOnDeclarator. by Daniel Dunbar · 16 years ago
  36. a80f874 Add more Parser/Sema support for GCC asm-label extension. by Daniel Dunbar · 16 years ago
  37. a34ea07 Nico Weber: by Ted Kremenek · 16 years ago
  38. 39caa08 Wherever a type is used/returned from the Action module, use TypeTy instead of DeclTy or void. by Argyrios Kyrtzidis · 16 years ago
  39. 06036d3 Pull protocol resolution of out ActOnStartClassInterface, this is also the by Chris Lattner · 16 years ago
  40. 7caeabd minor cleanup to the actions interface to pass around SmallVectorImpl instead by Chris Lattner · 16 years ago
  41. cfb0ef5 fix typo by Chris Lattner · 16 years ago
  42. b327ce0 by Steve Naroff · 16 years ago
  43. bda0b62 Make a major restructuring of the clang tree: introduce a top-level by Chris Lattner · 16 years ago[Renamed from Parse/MinimalAction.cpp]
  44. 0bc735f Don't attribute in file headers anymore. See llvmdev for the by Chris Lattner · 17 years ago
  45. 66c5dfc Patch to implement "Protocol" as a built-in type declared as "@class Protocol;" by Fariborz Jahanian · 17 years ago
  46. b4292f2 by Steve Naroff · 17 years ago
  47. 8ee529b by Steve Naroff · 17 years ago
  48. f908a87 by Steve Naroff · 17 years ago
  49. 640db42 by Steve Naroff · 17 years ago
  50. e440eb8 by Steve Naroff · 17 years ago
  51. 71e9908 by Steve Naroff · 17 years ago
  52. 3a165b0 by Steve Naroff · 17 years ago
  53. 37e58d1 by Steve Naroff · 17 years ago
  54. ccb4f31 This patch introduces a new class to keep track of class implementation info. It also adds more by Fariborz Jahanian · 17 years ago
  55. 894c57f This patch instantiates objects for forward protocols and in general handles use of by Fariborz Jahanian · 17 years ago
  56. 25e077d Patch to add objective-c's @protocl type declaration. by Fariborz Jahanian · 17 years ago
  57. 08d92e4 by Steve Naroff · 17 years ago
  58. bb20469 by Steve Naroff · 17 years ago
  59. 3536b44 by Steve Naroff · 17 years ago
  60. 5f016e2 Stage two of getting CFE top correct. by Reid Spencer · 17 years ago