This revision was automatically updated to reflect the committed changes.
Closed by commit rG542e7806e610: [AST] Add a print method to Introspection
LocationCall (authored by njames93).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D100423/new/
https
steveire accepted this revision.
steveire added a comment.
This revision is now accepted and ready to land.
Thanks!
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D100423/new/
https://reviews.llvm.org/D100423
njames93 updated this revision to Diff 337724.
njames93 added a comment.
Tweak implementaion to make the print a static method of FormatterCpp.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D100423/new/
https://reviews.llvm.org/D100423
Files:
cla
steveire requested changes to this revision.
steveire added inline comments.
This revision now requires changes to proceed.
Comment at: clang/lib/Tooling/NodeIntrospection.cpp:26
+if (On->returnsPointer())
+ OS << "->";
+else
The reason for the `Loca
njames93 created this revision.
njames93 added a reviewer: steveire.
njames93 requested review of this revision.
Herald added a project: clang.
Herald added a subscriber: cfe-commits.
Add a print method that takes a raw_ostream.
Change LocationCallFormatterCpp::format to call that method.
Reposi