static Set tok_returnTypesOfStaticFunction_uncleaned(L tok, S functionName) { LL funcs = findFullFunctionDefs(tok, true); new TreeSet out; for (L tokF : funcs) { int i = indexOfAny(tokF, 0, "(", "{"); if (i < 0) continue; S fname = get(tokF, i-2); if (!eq(fname, functionName)) continue; out.add(joinSubList(tokF, 1, i-3)); } ret out; }