debugger(data=last.dump)
The inspect function now provides a more general interactive debugging environment, including browsing and tracing, together with most of the functionality of the debugger function.
# an unobvious error occurs old.options <- options(error=dump.frames, warn=1) # now create the error again # use the debugger possibly several times to track and fix the bugdebugger()
# after debugging, return error handling to normal options(old.options)