Considering the following test file:
test.R
x <- 1
y <- "a"
z <- function() {
'hello'
}
delayedAssign("d", 1)
delayedAssign("err", stop("err"))
makeActiveBinding("a1", function() 1, environment())
Currently, only x, y and z are displayed in the OUTLINE but d, err and a1 don't.
I hope we can have them in the OUTLINE, too.
