ConverterBase.init();
}
public void executeInstruction (VM vm, ThreadInfo currentThread, Instruction instructionToExecute) {
if(instructionToExecute instanceof EXECUTENATIVE) {
MethodInfo mi = ((EXECUTENATIVE)instructionToExecute).getMethodInfo();
if(mi.isNative() && (mi instanceof HandledMethodInfo)) {
// --- any method handled by nhandler is caught here ---
}
}
}