static LL tok_findMainFunctionsNamed(S src, S... names) { HashSet namesSet = asHashSet(names); new LL out; for (L tok : tok_findMainFunctions(src)) { S name = tok_functionName(tok); if (namesSet.contains(name)) out.add(tok); } ret out; }