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
c<-function(x) {
if (x>0) wat
}
b<-function(x) c(x)
b<-boomer::rig(b, print_args=TRUE)
a<-function(x) b(3)
a(5)
#> 👇 b#> 💣 c#> Registered S3 method overwritten by 'pryr':#> method from#> print.bytes Rcpp#> x :#> [1] 3#> 💥 c(x)#> Error: simpleError/error/condition#> Error in (function (x) : object 'wat' not found#> 👆 b
We might find a way to trigger this at a more appropriate time.
On the other hand, we use only function promise_evaled, which has nothing to do with print.bytes(), is unexported, and has really simple code, so it might be cleaner just to have it in the package.
from : #40
We might find a way to trigger this at a more appropriate time.
On the other hand, we use only function
promise_evaled
, which has nothing to do withprint.bytes()
, is unexported, and has really simple code, so it might be cleaner just to have it in the package.Its cpp code is :
The R code is :
I find in the repo the old C code, so we can avoid a Rcpp dependency :
and the R code would be
The text was updated successfully, but these errors were encountered: