[PATCH] D55189: Extract TextNodeDumper class
Aaron Ballman via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Dec 4 14:13:18 PST 2018
aaron.ballman accepted this revision.
aaron.ballman added a comment.
This revision is now accepted and ready to land.
LGTM!
================
Comment at: lib/AST/ASTDumper.cpp:90
// Utilities
- void dumpPointer(const void *Ptr);
- void dumpSourceRange(SourceRange R);
- void dumpLocation(SourceLocation Loc);
- void dumpBareType(QualType T, bool Desugar = true);
- void dumpType(QualType T);
+ void dumpType(QualType T) { NodeDumper.dumpType(T); }
void dumpTypeAsChild(QualType T);
----------------
Another nice cleanup for later would be to replace these call sites with the `NodeDumper.foo()` version. Same for `dumpBareDeclRef()` below.
Repository:
rC Clang
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D55189/new/
https://reviews.llvm.org/D55189
More information about the cfe-commits
mailing list