Debugger/DebuggerInterfacePython2.py

branch
debugger fine grinding
changeset 5658
e5f6fe5855fd
parent 5587
ea526b78ee6c
child 5848
56388f41b1e6
equal deleted inserted replaced
5657:0f4257c1abcb 5658:e5f6fe5855fd
561 """ 561 """
562 self.__sendJsonCommand("RequestContinue", { 562 self.__sendJsonCommand("RequestContinue", {
563 "special": special, 563 "special": special,
564 }) 564 })
565 565
566 def remoteMoveIP(self, line):
567 """
568 Public method to move the instruction pointer to a different line.
569
570 @param line the new line, where execution should be continued
571 """
572 self.__sendJsonCommand("RequestMoveIP", {
573 "newLine": line,
574 })
575
566 def remoteBreakpoint(self, fn, line, setBreakpoint, cond=None, temp=False): 576 def remoteBreakpoint(self, fn, line, setBreakpoint, cond=None, temp=False):
567 """ 577 """
568 Public method to set or clear a breakpoint. 578 Public method to set or clear a breakpoint.
569 579
570 @param fn filename the breakpoint belongs to (string) 580 @param fn filename the breakpoint belongs to (string)

eric ide

mercurial