static Set nlLogic_allEvalFragments(L rules) { final new TreeSet set; nlLogic_visit(rules, voidfunc(O o) { if (o cast Func) if (eq(o.name, 'eval)) set.add(o.arg.text()); }); ret set; }