예제 #1
0
 private void commandStepi() throws NoSessionException {
   ThreadReference current = context.getCurrentThread();
   if (current == null) {
     env.failure("No current thread.");
     return;
   }
   runtime.stepIntoInstruction(current);
 }