1. 39f34e9 Migrate some stuff from NamedDecl::getName() to by Chris Lattner · 16 years ago
  2. 8ec03f5 Rename NamedDecl::getIdentifierName() to ::getNameAsCString() and make it by Chris Lattner · 16 years ago
  3. 077bf5e Rename Selector::getName() to Selector::getAsString(), and add by Chris Lattner · 16 years ago
  4. 5daf570 New AST node to access "implicit" setter/getter using property dor syntax. by Fariborz Jahanian · 16 years ago
  5. 2e1cd42 Introduction the DeclarationName class, as a single, general method of by Douglas Gregor · 16 years ago
  6. 0518999 Introduce a single AST node SizeOfAlignOfExpr for all sizeof and alignof expressions, both of values and types. by Sebastian Redl · 16 years ago
  7. cd9b46e Add a new expression class, ObjCSuperExpr, to handle the Objective-C 'super'. Remove ObjCThis from PredefinedExpr by Douglas Gregor · 16 years ago
  8. 49badde Refactor the expression class hierarchy for casts. Most importantly: by Douglas Gregor · 16 years ago
  9. 35bc082 Simplify handling of struct/union/class tags. by Argyrios Kyrtzidis · 16 years ago
  10. 04a72b7 Use Decl::decl_iterator instead of walking the ScopedDecl chain (which will soon be removed). by Ted Kremenek · 16 years ago
  11. e66f4e3 Fix ObjCPropertRefExpr to be able to encode all the information for by Daniel Dunbar · 16 years ago
  12. 7f8ea5c Add Objective-C property setter support. by Daniel Dunbar · 16 years ago
  13. acc5f3e More #include cleaning by Daniel Dunbar · 16 years ago
  14. d9f6910 rename PreDefinedExpr -> PredefinedExpr by Chris Lattner · 16 years ago
  15. 3cb640b fix an extraneous blank line in -ast-dump output. by Chris Lattner · 16 years ago
  16. 63e9d56 remove dead enums. by Chris Lattner · 16 years ago
  17. 0d17f6f Switch 'super' from being a weird cast thing to being a predefined expr node. by Chris Lattner · 16 years ago
  18. 4515ff4 Dump the name of CXXStruct/CXXUnion/CXXClass Decl subclasses. by Argyrios Kyrtzidis · 16 years ago
  19. da8249e Fix ast dumping to work with long double literals, e.g. we dump: by Chris Lattner · 16 years ago
  20. 218543b Minor tweak to -ast-dump for ivars. by Steve Naroff · 16 years ago
  21. 466c2e3 Tweak AST dumper for ObjC ivars. by Steve Naroff · 16 years ago
  22. ea958e57 Use pointer swizziling to unify in ObjCMessageExpr the receiver and classname "fields". This saves us a pointer. by Ted Kremenek · 16 years ago
  23. 213541a OCUVector -> ExtVector, shorthand for extended vector, per feedback from Chris. by Nate Begeman · 16 years ago
  24. 97b7f26 Remove uses of "Selector&" and "const Selector&", since Selector is just an by Ted Kremenek · 16 years ago
  25. 248a753 Remove FileVarDecl and BlockVarDecl. They are replaced by VarDecl::isBlockVarDecl() and VarDecl::isFileVarDecl(). by Steve Naroff · 16 years ago
  26. bad3785 print cvr qualifiers on simplified typedefs by Chris Lattner · 16 years ago
  27. bda0b62 Make a major restructuring of the clang tree: introduce a top-level by Chris Lattner · 16 years ago[Renamed from AST/StmtDumper.cpp]
  28. 3c64d9e -Add missing visitor for ObjCIvarRefExpr. by Steve Naroff · 16 years ago
  29. b3d914b When AST-dumping ObjCMessageExpr, output the selector. by Ted Kremenek · 16 years ago
  30. a526c5c Substituted all instances of the string "Objc" for "ObjC". This fixes by Ted Kremenek · 17 years ago
  31. 0bc735f Don't attribute in file headers anymore. See llvmdev for the by Chris Lattner · 17 years ago
  32. 5399ce2 Added back VisitDeclStmt() to the StmtDumper, essentially reverting r44920: by Ted Kremenek · 17 years ago
  33. f155e46 Removed VisitDeclStmt(). The initializers of a DeclStmt are now automatically by Ted Kremenek · 17 years ago
  34. 9219928 by Steve Naroff · 17 years ago
  35. 91d1d7a Fixed includes of "clang/AST/DeclObjC.h" to work on case-sensitive by Ted Kremenek · 17 years ago
  36. 390d50a Implementation of AST for @protocol expression. by Fariborz Jahanian · 17 years ago
  37. 311ff02 Add a new Rewriter::getRangeSize method. by Chris Lattner · 17 years ago
  38. c5c42f5 Steve, pointer out that getName() is available for selectors. Made code much smaller, thanks. by Fariborz Jahanian · 17 years ago
  39. f24d95a Fix problem dumping/printing method names with null selector. by Fariborz Jahanian · 17 years ago
  40. b62f681 Patch to implement AST generation for objective-c's @selector expression. by Fariborz Jahanian · 17 years ago
  41. aa9fc46 Rename FileVariable -> FileVar for consistency with its class name, by Chris Lattner · 17 years ago
  42. c7229c3 move IdentifierTable.h from liblex to libbasic. by Chris Lattner · 17 years ago
  43. c9bec4b further apfloat'ize the front-end, allowing codegen to pass by Chris Lattner · 17 years ago
  44. 9474504 by Steve Naroff · 17 years ago
  45. eb641f9 Modified dumping of Decl information to including the Decl type. by Ted Kremenek · 17 years ago
  46. 9dcbfa4 by Steve Naroff · 17 years ago
  47. e300c87 Teach the stmtdumper to dump location/range info when a SourceMgr is available. by Chris Lattner · 17 years ago
  48. 17a1a72 Previous commit should have been: by Chris Lattner · 17 years ago
  49. b393879 elimiante some virtual calls. by Chris Lattner · 17 years ago
  50. 0c727a3 Allow a SourceManager to optionally be passed into Stmt::dump by Chris Lattner · 17 years ago
  51. 4a70adb null pointers don't get an extra newline. by Chris Lattner · 17 years ago
  52. 5d66145 add a new ImaginaryLiteral AST node that is used to by Chris Lattner · 17 years ago
  53. eb14fe8 Split the ASTNode out for compound assignments out from binary operators. Now by Chris Lattner · 17 years ago
  54. dfce2a5 print the computation type for compound assignment operators in dumps. by Chris Lattner · 17 years ago
  55. f9bcf01 Parse @encode expressions. by Anders Carlsson · 17 years ago
  56. 5508518 Implement parsing and code generation of Objective-C string literals. by Anders Carlsson · 17 years ago
  57. c5598cb Switch StmtVisitor from using dynamic to static dispatch. This makes it by Chris Lattner · 17 years ago
  58. 2324512 Modified ArraySubscriptExpr to have accessors getLHS and getRHS in addition by Ted Kremenek · 17 years ago
  59. ee41ce5 make sure to add a newline at the end of the dump by Chris Lattner · 17 years ago
  60. f9e0581 implement dumper support for declstmt's. The dumper is now "done". by Chris Lattner · 17 years ago
  61. 13cb21f implement dumper support for the rest of expressions. by Chris Lattner · 17 years ago
  62. 5fc6107 dump strings with escapes and other stuff in them nicely. by Chris Lattner · 17 years ago
  63. a0df31a add dumping support for some new nodes by Chris Lattner · 17 years ago
  64. fd8f7da Dump out types for expressions, and handle typedefs nicely. by Chris Lattner · 17 years ago
  65. 6000dac add a new AST dumper interface (E->dump()). This dumps out by Chris Lattner · 17 years ago