static Class findClassInStandardImports(S name) { for (S import : standardImports()) { Class c = classForNameOpt_noCache(import + "." + name); if (c != null) ret c; } null; }