static WebTree webTree_sortChildrenByRelationText(WebTree tree) { sortList(tree.children, makeComparator(func(Pair a, Pair b) { stdCompare(web_text(a.a), web_text(b.a)) })); for (Pair p : tree.children) webTree_sortChildrenByRelationText(p.b); ret tree; }