I'm debugging my code using Chrome Debugger and if I call the same method twice the result is different. If possible, I would like to know at what line in the execution of the code, the code deviates from the previous time.
I am stepping through the code line by line but if Chrome Debugger could watch the function for me and break any time the code path is different it would help debug what is going on.
Is there a name for this feature and does Chrome Debugger have it?
I know that there is a similar feature called "Watch variables" but I don't know if it would apply here. This feature might be watch all variables the first time and the second time through inform me of any changes.