if (RubyInstanceConfig.JIT_CODE_CACHE != null && cachedClassName != null) {
// save script off to disk
String pathName = cachedClassName.replace('.', '/');
JITCompiler.saveToCodeCache(this, asmCompiler.getClassByteArray(), "ruby/jit", new File(RubyInstanceConfig.JIT_CODE_CACHE, pathName + ".class"));
}
script = (Script)asmCompiler.loadClass(classLoader).newInstance();
// __file__ method expects its scope at 0, so prepare that here
// this is only needed for the "gets loop" which skips calling load
StaticScope rootScope = ((RootNode)node).getStaticScope();
if (rootScope.getModule() == null) rootScope.setModule(objectClass);