/tmp/kw.rb:8: warning: Using the last argument as keyword parameters is deprecated; maybe ** should be added to the call
/tmp/kw.rb:2: warning: The called method `initialize' is defined here
This can be worked around with keyword_init: true, but I see no reason why Struct couldn't properly handle keyword arguments in it's default constructor.
I have a patch for this: https://github.com/ruby/ruby/pull/3045 however I had to modify a test that was explicitly expecting that warning, so maybe I'm missing something.
I think the something your missing is this would break existing code:
Struct.new(:hash_value).new(hash_key: 1)
Treating the keywords as named columns when they were originally designed to be a hash value for the next column will definitely break existing code. That is why keyword_init must be specified explicitly.
The current design is expected and not a bug. Switching this to a feature request.
To clarify, what I'm trying to say is that the "new" method should simply forward everything to the initialize method no matter what. I can't see any reason for Struct#new to have arbitrary restrictions.
To clarify, what I'm trying to say is that the "new" method should simply forward everything to the initialize method no matter what. I can't see any reason for Struct#new to have arbitrary restrictions.
Sorry about misunderstanding. Your clarification makes a lot more sense. It seems reasonable that keyword_init would only affect #initialize and not .new.
Note: Backporting shouldn't modify object.h and instead can use
struct_new_kw which is basically a duplicate implementation of
rb_class_new_instance_pass_kw