eric6/DebugClients/Python/DebugClientBase.py

changeset 7897
9acc015ea443
parent 7895
554fdb07c856
child 7901
6ff7ccf0cb50
equal deleted inserted replaced
7896:75ce42b1df23 7897:9acc015ea443
680 newLine = params["newLine"] 680 newLine = params["newLine"]
681 self.currentThreadExec.move_instruction_pointer(newLine) 681 self.currentThreadExec.move_instruction_pointer(newLine)
682 682
683 elif method == "RequestContinue": 683 elif method == "RequestContinue":
684 self.currentThreadExec.go(params["special"]) 684 self.currentThreadExec.go(params["special"])
685 self.eventExit = True
686
687 elif method == "RequestContinueUntil":
688 newLine = params["newLine"]
689 self.currentThreadExec.set_until(lineno=newLine)
685 self.eventExit = True 690 self.eventExit = True
686 691
687 elif method == "RawInput": 692 elif method == "RawInput":
688 # If we are handling raw mode input then break out of the current 693 # If we are handling raw mode input then break out of the current
689 # event loop. 694 # event loop.

eric ide

mercurial