Hacker News new | ask | show | jobs
by rubyist5eva 1736 days ago
If an error causes an exception there is an option to suspend execution when one is thrown.
1 comments

But typically it will throw an exception _after_ the interesting code happened. For instance it might throw a NullPointerException, but you want to know what set it to null in the first place. With breakpoints you have to suspend on exception, and then add additional breakpoints earlier in the code, and then rerun the code. With rewind you can just step backwards.