VmSystemClassLoader vmc = new VmSystemClassLoader(new URL[]{
new File("core/build/classes").toURL(),
new File("local/classlib").toURL()
}, arch);
new VmImpl("?", arch, vmc.getSharedStatics(), true, vmc, null);
VmType<?> type = vmc.loadClass(className, true);
VmMethod arithMethod = null;
int nMethods = type.getNoDeclaredMethods();
for (int i = 0; i < nMethods; i += 1) {
VmMethod method = type.getDeclaredMethod(i);
if (methodName.equals(method.getName())) {