I dont know how to debug structures like:
fun1 <- function(obj){
a<-c(obj,4)
c(a,5)
}
fun <- function(obj){
a <- match.call()
a[[1L]] <- fun1
return(eval.parent(a))
}
I would like to know how to instruct the debug-mode to follow the call eval.parent(a)
and jump into fun1
.