eric6/Debugger/DebuggerInterfacePython.py

changeset 7897
9acc015ea443
parent 7882
617cc27f11af
child 7915
e68f5c568aee
equal deleted inserted replaced
7896:75ce42b1df23 7897:9acc015ea443
848 self.__isStepCommand = False 848 self.__isStepCommand = False
849 self.__sendJsonCommand("RequestContinue", { 849 self.__sendJsonCommand("RequestContinue", {
850 "special": special, 850 "special": special,
851 }, debuggerId) 851 }, debuggerId)
852 852
853 def remoteContinueUntil(self, debuggerId, line):
854 """
855 Public method to continue the debugged program to the given line
856 or until returning from the current frame.
857
858 @param debuggerId ID of the debugger backend
859 @type str
860 @param line the new line, where execution should be continued to
861 @type int
862 """
863 self.__isStepCommand = False
864 self.__sendJsonCommand("RequestContinueUntil", {
865 "newLine": line,
866 }, debuggerId)
867
853 def remoteMoveIP(self, debuggerId, line): 868 def remoteMoveIP(self, debuggerId, line):
854 """ 869 """
855 Public method to move the instruction pointer to a different line. 870 Public method to move the instruction pointer to a different line.
856 871
857 @param debuggerId ID of the debugger backend 872 @param debuggerId ID of the debugger backend

eric ide

mercurial