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 |