From: merch-redmine@... Date: 2019-09-19T15:32:59+00:00 Subject: [ruby-core:94991] [Ruby master Bug#16154] lib/delegate.rb issues keyword argument warnings Issue #16154 has been updated by jeremyevans0 (Jeremy Evans). At the dev meeting yesterday, matz recommended changing the method name from `pass_keywords` to `ruby2_keywords`. I have updated the pull request to do that: https://github.com/ruby/ruby/pull/2449 akr disliked the approach of using a VM frame flag. I believe it would not be too difficult to change the implementation from using a VM frame flag to using a flag on the final hash object. It's possible you could support that via an option to `ruby2_keywords` (e.g. `ruby2_keywords :method_name, flag: :hash`). There are some cases that are handled by a VM frame flag and not handled by a hash object flag (e.g. `def foo(*args) args[-1] = args[-1].merge(...) if args[-1].is_a?(Hash); bar(*args) end`), and others that are handled by a hash object flag and not a VM frame flag (e.g. `def bar(*args) @args = args end; def baz; quux(*@args) end`). ---------------------------------------- Bug #16154: lib/delegate.rb issues keyword argument warnings https://bugs.ruby-lang.org/issues/16154#change-81617 * Author: jeremyevans0 (Jeremy Evans) * Status: Open * Priority: Normal * Assignee: * Target version: * ruby -v: * Backport: 2.5: DONTNEED, 2.6: DONTNEED ---------------------------------------- In the current master branch, `lib/delegate.rb` (e.g. `Delegator`/`SimpleDelegator`/`DelegateClass`) does not delegate keyword arguments, leading to keyword argument warnings when using it. It is simple to fix this by changing it to delegate keyword arguments, and I have a commit that does this (https://github.com/ruby/ruby/pull/2439/commits/30a70491b11d5235877a13d1a1d3fe0157960a64). However, one issue with this approach, that you can notice at the bottom of the commit, is that it warns in a case where the behavior will not change between 2.6 and 3.0: ```ruby foo = Object.new def foo.bar(*args) args end d = SimpleDelegator.new(foo) d.bar({a: 1}) # warns in 2.7, even though 2.6, 2.7, and 3.0 will return [{a: 1}] ``` The reason it warns even though the behavior will not change is that there is a behavior change, but the behavior change is inside the delegator. When you call `d.bar`, the positional hash is converted to a keyword argument, which generates a warning. When `d.bar` calls `foo.bar`, the keyword splat is converted back to a positional hash. Because of this hash->keyword->hash conversion, the net result is behavior does not change outside the delegator, and therefore it would be great if we can somehow flag this particular case as not warning, while still warning in the case where `foo.bar` would accept keyword arguments (as in that case, behavior will change). I came up with an implementation that makes delegate not emit the warning in the case where behavior does not change, but still emit the warning in the case where behavior will change (https://github.com/ruby/ruby/pull/2439/commits/6b7bd4f89143d692932dc89fadc341980816ee14). This works by flagging a method that accepts keyword arguments. If the flag is set for the method, and the method is passed a positional hash that is converted to a keyword argument, no warning is emitted, and instead a VM frame flag is set in the next frame so that keyword splats inside that method are converted to positional arguments. The method flag is enabled by calling a `Module#pass_positional_hash` method, and this method would only exist in 2.7, since it is only for skipping this 2.7-specific warning. I'm not sure this implementation approach is best, and would be open to any approach that allows delegate to not emit a warning for the code above, as long as it doesn't change the default keyword behavior in 2.7. Attached is a patch that implements this, and there is also a pull request that has passed CI for it (https://github.com/ruby/ruby/pull/2439). ---Files-------------------------------- delegate-keyword-argument-separation.patch (19.1 KB) -- https://bugs.ruby-lang.org/ Unsubscribe: