261 |
261 |
262 @param debuggerId ID of the debugger backend |
262 @param debuggerId ID of the debugger backend |
263 @type str |
263 @type str |
264 @param special flag indicating a special continue operation |
264 @param special flag indicating a special continue operation |
265 @type bool |
265 @type bool |
|
266 """ |
|
267 return |
|
268 |
|
269 def remoteContinueUntil(self, debuggerId, line): |
|
270 """ |
|
271 Public method to continue the debugged program to the given line |
|
272 or until returning from the current frame. |
|
273 |
|
274 @param debuggerId ID of the debugger backend |
|
275 @type str |
|
276 @param line the new line, where execution should be continued to |
|
277 @type int |
266 """ |
278 """ |
267 return |
279 return |
268 |
280 |
269 def remoteMoveIP(self, debuggerId, line): |
281 def remoteMoveIP(self, debuggerId, line): |
270 """ |
282 """ |