We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
.__active__
In this example, there are two references to .__active__, but there should only be one.
library(R6) A <- R6Class("A", portable = FALSE, public = list( getx = function() self$x, x = 1 ), active = list( x2 = function() 2 * self$x ) ) B <- R6Class("B", portable = FALSE, inherit = A ) b <- B$new() library(pryr) #> Registered S3 method overwritten by 'pryr': #> method from #> print.bytes Rcpp rls(b$getx) #> [[1]] #> [1] ".__active__" #> #> [[2]] #> [1] ".__active__" ".__enclos_env__" "clone" "getx" #> [5] "self" "super" "x" "x2" #> #> [[3]] #> [1] "A" "b" "B"
The text was updated successfully, but these errors were encountered:
Hm, now that I've experimented with this, I think it might be necessary.
Sorry, something went wrong.
No branches or pull requests
In this example, there are two references to
.__active__
, but there should only be one.The text was updated successfully, but these errors were encountered: