Skip to content
New issue

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

Deep clone does not lead to a complete copy #133

Closed
jakob-r opened this issue Oct 16, 2017 · 2 comments · Fixed by #156
Closed

Deep clone does not lead to a complete copy #133

jakob-r opened this issue Oct 16, 2017 · 2 comments · Fixed by #156

Comments

@jakob-r
Copy link

jakob-r commented Oct 16, 2017

Consider the following example

library(R6)

FooClass = R6Class(
  "Foo",
  public = list(
    initialize = function(value) {
      # force(value) # does not help
      self$foo.fun = function(x) x == value
    },
    foo.fun = NULL
  )
)

foo.obj1 = FooClass$new(3)
foo.obj1$foo.fun(3)
# TRUE

foo.obj2 = foo.obj1$clone()
foo.obj2$foo.fun(3)
# value not found

foo.obj3 = foo.obj1$clone(deep = TRUE)
foo.obj3$foo.fun(3)
# value not found

Or is this expected to fail?

@wch
Copy link
Member

wch commented Oct 16, 2017

That is the expected behavior - the clone() method assumes that any function in the object (like foo.fun in this case) is a method, and when it makes the copy of that function in the clone object, it reassigns the function's environment so that it can find the appropriate self object.

Your version of the foo.fun captures the environment from the initialize method, but that environment gets lost in the cloning process. In this particular case, you'd be better off storing value in self or private instead of capturing it with a closure, but that may or may not be appropriate for your real use case.

This is essentially the same issue as #94.

I think this the documentation should probably do a better job explaining how cloning works.

@jakob-r
Copy link
Author

jakob-r commented Oct 17, 2017

Thanks for your comprehensible answer. That solves the issue for me.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
2 participants