Debugger/DebuggerInterfaceNone.py

changeset 5587
ea526b78ee6c
parent 5389
9b1c800daff3
child 5658
e5f6fe5855fd
equal deleted inserted replaced
5586:0e5421d679e7 5587:ea526b78ee6c
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 remoteBreakpoint(self, fn, line, set, cond=None, temp=False): 213 def remoteBreakpoint(self, fn, line, setBreakpoint, cond=None, temp=False):
214 """ 214 """
215 Public method to set or clear a breakpoint. 215 Public method to set or clear a breakpoint.
216 216
217 @param fn filename the breakpoint belongs to (string) 217 @param fn filename the breakpoint belongs to (string)
218 @param line linenumber of the breakpoint (int) 218 @param line linenumber of the breakpoint (int)
219 @param set flag indicating setting or resetting a breakpoint (boolean) 219 @param setBreakpoint flag indicating setting or resetting a
220 breakpoint (boolean)
220 @param cond condition of the breakpoint (string) 221 @param cond condition of the breakpoint (string)
221 @param temp flag indicating a temporary breakpoint (boolean) 222 @param temp flag indicating a temporary breakpoint (boolean)
222 """ 223 """
223 return 224 return
224 225
241 @param line linenumber of the breakpoint (int) 242 @param line linenumber of the breakpoint (int)
242 @param count number of occurrences to ignore (int) 243 @param count number of occurrences to ignore (int)
243 """ 244 """
244 return 245 return
245 246
246 def remoteWatchpoint(self, cond, set, temp=False): 247 def remoteWatchpoint(self, cond, setWatch, temp=False):
247 """ 248 """
248 Public method to set or clear a watch expression. 249 Public method to set or clear a watch expression.
249 250
250 @param cond expression of the watch expression (string) 251 @param cond expression of the watch expression (string)
251 @param set flag indicating setting or resetting a watch expression 252 @param setWatch flag indicating setting or resetting a watch expression
252 (boolean) 253 (boolean)
253 @param temp flag indicating a temporary watch expression (boolean) 254 @param temp flag indicating a temporary watch expression (boolean)
254 """ 255 """
255 return 256 return
256 257
294 295
295 @param tid id of the thread (integer) 296 @param tid id of the thread (integer)
296 """ 297 """
297 return 298 return
298 299
299 def remoteClientVariables(self, scope, filter, framenr=0): 300 def remoteClientVariables(self, scope, filterList, framenr=0):
300 """ 301 """
301 Public method to request the variables of the debugged program. 302 Public method to request the variables of the debugged program.
302 303
303 @param scope the scope of the variables (0 = local, 1 = global) 304 @param scope the scope of the variables (0 = local, 1 = global)
304 @param filter list of variable types to filter out (list of int) 305 @param filterList list of variable types to filter out (list of int)
305 @param framenr framenumber of the variables to retrieve (int) 306 @param framenr framenumber of the variables to retrieve (int)
306 """ 307 """
307 return 308 return
308 309
309 def remoteClientVariable(self, scope, filter, var, framenr=0): 310 def remoteClientVariable(self, scope, filterList, var, framenr=0):
310 """ 311 """
311 Public method to request the variables of the debugged program. 312 Public method to request the variables of the debugged program.
312 313
313 @param scope the scope of the variables (0 = local, 1 = global) 314 @param scope the scope of the variables (0 = local, 1 = global)
314 @param filter list of variable types to filter out (list of int) 315 @param filterList list of variable types to filter out (list of int)
315 @param var list encoded name of variable to retrieve (string) 316 @param var list encoded name of variable to retrieve (string)
316 @param framenr framenumber of the variables to retrieve (int) 317 @param framenr framenumber of the variables to retrieve (int)
317 """ 318 """
318 return 319 return
319 320
320 def remoteClientSetFilter(self, scope, filter): 321 def remoteClientSetFilter(self, scope, filterStr):
321 """ 322 """
322 Public method to set a variables filter list. 323 Public method to set a variables filter list.
323 324
324 @param scope the scope of the variables (0 = local, 1 = global) 325 @param scope the scope of the variables (0 = local, 1 = global)
325 @param filter regexp string for variable names to filter out (string) 326 @param filterStr regexp string for variable names to filter out
327 (string)
326 """ 328 """
327 return 329 return
328 330
329 def setCallTraceEnabled(self, on): 331 def setCallTraceEnabled(self, on):
330 """ 332 """

eric ide

mercurial