DebugClients/Python/DebugClientBase.py

branch
debugger speed
changeset 5221
960afd19c1b6
parent 5207
7283629b02c0
child 5239
27f56dc07b5b
equal deleted inserted replaced
5209:cd058aa6af37 5221:960afd19c1b6
713 }) 713 })
714 714
715 self.sendJsonCommand("ResponseOK", {}) 715 self.sendJsonCommand("ResponseOK", {})
716 716
717 elif method == "RequestStep": 717 elif method == "RequestStep":
718 self.currentThread.step(True) 718 self.currentThreadExec.step(True)
719 self.eventExit = True 719 self.eventExit = True
720 720
721 elif method == "RequestStepOver": 721 elif method == "RequestStepOver":
722 self.currentThread.step(False) 722 self.currentThreadExec.step(False)
723 self.eventExit = True 723 self.eventExit = True
724 724
725 elif method == "RequestStepOut": 725 elif method == "RequestStepOut":
726 self.currentThread.stepOut() 726 self.currentThreadExec.stepOut()
727 self.eventExit = True 727 self.eventExit = True
728 728
729 elif method == "RequestStepQuit": 729 elif method == "RequestStepQuit":
730 if self.passive: 730 if self.passive:
731 self.progTerminated(42) 731 self.progTerminated(42)

eric ide

mercurial