--- a/Debugger/DebuggerInterfacePython3.py Thu Mar 23 20:27:21 2017 +0100 +++ b/Debugger/DebuggerInterfacePython3.py Thu Mar 23 20:30:49 2017 +0100 @@ -563,6 +563,16 @@ "special": special, }) + def remoteMoveIP(self, line): + """ + Public method to move the instruction pointer to a different line. + + @param line the new line, where execution should be continued + """ + self.__sendJsonCommand("RequestMoveIP", { + "newLine": line, + }) + def remoteBreakpoint(self, fn, line, setBreakpoint, cond=None, temp=False): """ Public method to set or clear a breakpoint.