additional varname field
Posted: Tue Jun 22, 2004 10:08 am
an additional field in the debugger output window, that shows the unprocessed line behind the debug statement...
example:
output:
this could really help out finding bugs, as one doesn't have to correlate debugger output with input (varnames etc.)
example:
Code: Select all
b = 1
c = 2
debug b
debug b+1
debug abs(c)
Code: Select all
debug eval
-------- --------
b 1
b+1 2
abs(c) 2