Searched defs:DumpVisitor (Results 1 – 1 of 1) sorted by relevance
64 struct DumpVisitor { struct65 unsigned Depth = 0;66 bool PendingNewline = false;68 template<typename NodeT> static constexpr bool wantsNewline(const NodeT *) { in wantsNewline()71 static bool wantsNewline(NodeArray A) { return !A.empty(); } in wantsNewline()72 static constexpr bool wantsNewline(...) { return false; } in wantsNewline()74 template<typename ...Ts> static bool anyWantNewline(Ts ...Vs) { in anyWantNewline()81 void printStr(const char *S) { fprintf(stderr, "%s", S); } in printStr()82 void print(std::string_view SV) { in print()85 void print(const Node *N) { in print()[all …]