208 |
208 |
209 @param special flag indicating a special continue operation |
209 @param special flag indicating a special continue operation |
210 """ |
210 """ |
211 return |
211 return |
212 |
212 |
|
213 def remoteMoveIP(self, line): |
|
214 """ |
|
215 Public method to move the instruction pointer to a different line. |
|
216 |
|
217 @param line the new line, where execution should be continued |
|
218 """ |
|
219 return |
|
220 |
213 def remoteBreakpoint(self, fn, line, setBreakpoint, cond=None, temp=False): |
221 def remoteBreakpoint(self, fn, line, setBreakpoint, cond=None, temp=False): |
214 """ |
222 """ |
215 Public method to set or clear a breakpoint. |
223 Public method to set or clear a breakpoint. |
216 |
224 |
217 @param fn filename the breakpoint belongs to (string) |
225 @param fn filename the breakpoint belongs to (string) |