Searched defs:DumpVisitor (Results 1 – 1 of 1) sorted by relevance
65 struct DumpVisitor { struct66 unsigned Depth = 0;67 bool PendingNewline = false;69 template<typename NodeT> static constexpr bool wantsNewline(const NodeT *) { in wantsNewline()72 static bool wantsNewline(NodeArray A) { return !A.empty(); } in wantsNewline()73 static constexpr bool wantsNewline(...) { return false; } in wantsNewline()75 template<typename ...Ts> static bool anyWantNewline(Ts ...Vs) { in anyWantNewline()82 void printStr(const char *S) { fprintf(stderr, "%s", S); } in printStr()83 void print(StringView SV) { in print()86 void print(const Node *N) { in print()[all …]