diff -r 75ce42b1df23 -r 9acc015ea443 eric6/Debugger/DebugServer.py --- a/eric6/Debugger/DebugServer.py Fri Dec 18 17:01:10 2020 +0100 +++ b/eric6/Debugger/DebugServer.py Sat Dec 19 14:41:43 2020 +0100 @@ -1236,6 +1236,18 @@ """ self.debuggerInterface.remoteContinue(debuggerId, special) + def remoteContinueUntil(self, debuggerId, line): + """ + Public method to continue the debugged program to the given line + or until returning from the current frame. + + @param debuggerId ID of the debugger backend + @type str + @param line the new line, where execution should be continued to + @type int + """ + self.debuggerInterface.remoteContinueUntil(debuggerId, line) + def remoteMoveIP(self, debuggerId, line): """ Public method to move the instruction pointer to a different line.