return executeCall(connection, new DebuggerRuntimeInfo(), "step-out");
}
public DebuggerRuntimeInfo runToPosition(String programOwner, String programName, String programType, int line, Connection connection) throws SQLException {
BreakpointInfo breakpointInfo = addBreakpoint(programOwner, programName, programType, line, connection);
DebuggerRuntimeInfo runtimeInfo = stepOut(connection);
removeBreakpoint(breakpointInfo.getBreakpointId(), connection);
return runtimeInfo;
}