static bool veryQuickJava_silent = true; static bool veryQuickJava_useCompilerBot; // mainJava is a complete program, but without the !752/!759 at the top // returns link to main class static Class veryQuickJava2(S mainJava) { transpileRaw_silent = veryQuickJava_silent; S src = transpileRaw(mainJava); // transpiled, with lib references new L libs; src = findTranslators2(src, libs); //print("Libs found: " + struct(libs)); S dehlibs = join(" ", libs); File bytecode = null; if (veryQuickJava_useCompilerBot) pcall { bytecode = javaCompile_overBot(src, dehlibs); } if (bytecode == null) bytecode = javaCompile(src, dehlibs); ret hotwireCore(concatLists(ll(bytecode), loadLibraries(libs))); }