static void printTreeView(TreeView t, O... _) { if (t == null) ret; O stringifier = optPar stringifier(_); print(callStringifier(stringifier, t)); temp tempIndent(); for (TreeView c : unnull(t.children())) printTreeView(c, _); }