If you can go to the body of a level 2 function, try to make a mistake. Then set the error parameter to recover. Now you can move between functions as you like.
foo <- function() bar()
bar <- function() stop("start debug here")
options(error = recover)
foo()
source
share