Debugger/DebuggerInterfacePython3.py

branch
debugger fine grinding
changeset 5658
e5f6fe5855fd
parent 5587
ea526b78ee6c
child 5848
56388f41b1e6
--- 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.

eric ide

mercurial