if (scriptGlobal == null) {
if (importScripts.get(name) != null)
return;
Parser parser = new Parser();
parser.setScriptPath(getScriptPath());
parser.setClassLoader(getClassLoader());
parser.setWorkDir(getClassDir());
Script script = parser.parse(name);
importScripts.put(name, script);
scriptGlobal = script.initClass(this);