Bump up for the following question:

Suppose I have the following code where the variable A is defined multiple 
times and after each definition it is used by the same function 
function_to_debug. How can I step in function_to_debug with the first 
definition/instantiation of A?
A = ...
function_to_debug(A)
...
...
A = ...
function_to_debug(A)

Seems that the only choice is to use breakpoint. Any other means without 
resorting to breakpoints??

Reply via email to