I have been searching for an answer to if it’s possible to backtrack when doing Java debugging. For instance if I have the code:
int x = 1
int y = 0
//Exception will happen here
int z = x/y
And if I’m hitting the exception, I would like to go back.
And not just like dropping the frame, but also revert actual changes made to the Heap.
Is that currently possible?
Thanks in advance.
There is tool called Chronon Time Travelling Debugger
It claims…