Remove RefCell from JsonRenderer.index#82354
Remove RefCell from JsonRenderer.index#82354camelid wants to merge 1 commit intorust-lang:masterfrom
JsonRenderer.index#82354Conversation
|
r? @jyn514 (rust-highfive has picked a reviewer for you, use r? to override) |
| let mut index = (*self.index).clone().into_inner(); | ||
| let mut index = self.index.clone(); |
There was a problem hiding this comment.
I'm not fully sure the behavior is the same here. It seems like before it was moving out of an Rc, which I didn't think was possible, so I suspect I'm misunderstanding what this is doing.
I wonder if we could avoid the clone altogether and just push directly into self.index, but I don't know this code, so that may break stuff.
There was a problem hiding this comment.
Okay, looks like I did change the behavior, because every test is panicking 😆
There was a problem hiding this comment.
It doesn't move outside the Rc, it just forces to dereference it and make it so that clone is called on the RefCell instead of the Rc. This code should have kept its meaning.
What changed however is that now cloneing a JsonRenderer will create a totally separate index. In particular the insert in the item method will have effect only on self's index while before it affected any JsonRenderer with the same origin.
There was a problem hiding this comment.
The only way for this to work is to remove all calls to clone(). If you get that to work I would expect it to have the same behavior as before.
There was a problem hiding this comment.
Thanks for the explanation! Probably this should wait then on #82356.
|
The job Click to see the possible cause of the failure (guessed by this bot) |
|
#82356 has been merged, so this is no longer blocked! 🎉 |
|
Based on re-reading #82354 (comment) and thinking about this a bit more, I don't think this change is possible without significantly refactoring |
|
I think I'll leave this open for a bit in case anyone has ideas. |
|
I don't think there's much point in leaving this open if it doesn't work. Thanks for trying this, though! |
No description provided.