Correct Binding#dup to properly propagate values it captures#7688
Merged
enebo merged 8 commits intojruby:masterfrom May 2, 2024
Merged
Correct Binding#dup to properly propagate values it captures#7688enebo merged 8 commits intojruby:masterfrom
enebo merged 8 commits intojruby:masterfrom
Conversation
When we eval with binding we will construct a new binding that contains the original binding and that original binding will construct a new evalDynamicScope. If I do something like: ```ruby p TOPLEVEL_BINDING.local_variable_defined? :c p TOPLEVEL_BINDING.local_variable_defined? :_xxx_var_ b =TOPLEVEL_BINDING.dup p b.local_variable_defined? :c p b.local_variable_defined? :_xxx_var_ ``` I should still see _xxx_var_ after the dup. This will make that do that but two different RubyBinding instances will end up with the exact same backing Binding and I think this is wrong. Landing anyways to see if anything breaks.
…ues but they will be their own thing from that point onward
…y will rename this from dup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Binding#dup will get all variables from the original binding but when new ones are added to the new dup the old binding will not see them. This is a more broken down spec for the behavior:
This fixes the last two errors involving specs in erb. I added this spec to make the behavior explicit and not appear to be some artifact of erb.