} else {
// Look it up on the static dispatcher.
dispObj = (DispatchObject) moduleSpace.getStaticDispatcher();
}
jsMethod = (JsValueOOPHM) dispObj.getField(methodDispatchId);
DispatchMethod dispMethod = jsMethod.getWrappedJavaFunction();
boolean exception;
try {
exception = dispMethod.invoke(jsThis, jsArgs, jsRetVal);
} catch (Throwable t) {
exception = true;
JsValueGlue.set(jsRetVal, moduleSpace.getIsolatedClassLoader(),
t.getClass(), t);
}