eric6/Debugger/DebugServer.py

changeset 7897
9acc015ea443
parent 7889
c6af59ed8c17
child 7901
6ff7ccf0cb50
equal deleted inserted replaced
7896:75ce42b1df23 7897:9acc015ea443
1234 @type str 1234 @type str
1235 @param special flag indicating a special continue operation 1235 @param special flag indicating a special continue operation
1236 """ 1236 """
1237 self.debuggerInterface.remoteContinue(debuggerId, special) 1237 self.debuggerInterface.remoteContinue(debuggerId, special)
1238 1238
1239 def remoteContinueUntil(self, debuggerId, line):
1240 """
1241 Public method to continue the debugged program to the given line
1242 or until returning from the current frame.
1243
1244 @param debuggerId ID of the debugger backend
1245 @type str
1246 @param line the new line, where execution should be continued to
1247 @type int
1248 """
1249 self.debuggerInterface.remoteContinueUntil(debuggerId, line)
1250
1239 def remoteMoveIP(self, debuggerId, line): 1251 def remoteMoveIP(self, debuggerId, line):
1240 """ 1252 """
1241 Public method to move the instruction pointer to a different line. 1253 Public method to move the instruction pointer to a different line.
1242 1254
1243 @param debuggerId ID of the debugger backend 1255 @param debuggerId ID of the debugger backend

eric ide

mercurial