You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
foo <- function(x) { print(1); bar(2) }
bar <- function(x) { x + a.variable.which.does.not.exist }
foo(2) # gives a strange error
[1] 1
Error in bar(2) : object 'a.variable.which.does.not.exist' not found
traceback()
2: bar(2) at #1
1: foo(2)
Renjin 3.5-beta76 (console)
foo <- function(x) { print(1); bar(2) }
bar <- function(x) { x + a.variable.which.does.not.exist }
foo(2) # gives a strange error
[1] 1
ERROR: object 'a.variable.which.does.not.exist' not found
at bar()
at foo()
traceback()
No traceback available
The text was updated successfully, but these errors were encountered:
GNU R (3.6):
Renjin 3.5-beta76 (console)
The text was updated successfully, but these errors were encountered: