313314315316317318319320321322323
@Override public void startStepInto() { new DebugOperationThread("step into") { public void executeOperation() throws SQLException { DatabaseDebuggerInterface debuggerInterface = getDebuggerInterface(); runtimeInfo = debuggerInterface.stepInto(debugConnection); suspendSession(); } }.start(); }
936937938939940941942943944945946
public void actionPerformed(ActionEvent e) { if (currentEditor == null) return; Script script = currentEditor.script; script.stepInto(); } } private class StepOverAction extends AbstractAction { private StepOverAction() {
7475767778798081828384
} String action = commandLine.getValue(Options.ACTION_OPTION); if (action.equals(ACTION_INTO)) { steppingThread.stepInto(); } else if (action.equals(ACTION_OVER)) { steppingThread.stepOver(); } else if (action.equals(ACTION_RETURN)) {