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) |