traceback(data=last.dump)
When using browser, traceback() is often useful to determine how browser was called. This is particularly true when browser was invoked as a result of an interrupt or tracing action.
f1 <- function(x) { y <- x+4; f2(y)} f2 <- function(x) weird.variable + x f1(5) Error in call to "f2": Object "weird.variable" not found Dumped traceback() 3: f2(y) 2: f1(5) 1: