static void visitTree(Tree t, VF1> f) { if (t == null) ret; callF(f, t); for (Tree child : unnull(t.children)) visitTree(child, f); }