| 57 | |
| 58 | template <typename Sink> |
| 59 | void AbslStringify(Sink& sink, ChildKind kind) { |
| 60 | absl::Format(&sink, "%s", ChildKindName(kind)); |
| 61 | } |
| 62 | |
| 63 | // Human readable NodeKind name. Provided for test readability -- do not depend |
| 64 | // on the specific values. |
nothing calls this directly
no test coverage detected