mirror of
https://github.com/ruby/ruby.git
synced 2025-09-17 09:33:59 +02:00
partially merge revision adf709a785
: [Backport #16801]
Classes made from Struct should have default new singleton method. Co-authored-by: Yusuke Endoh mame@ruby-lang.org Co-authored-by: John Hawthorn john@hawthorn.email Co-authored-by: Adam Hess HParker@github.com Co-authored-by: Jose Cortinas jacortinas@gmail.com Co-authored-by: Jean Boussier jean.boussier@gmail.com
This commit is contained in:
parent
43cc6997c5
commit
61c6d43306
3 changed files with 21 additions and 14 deletions
15
struct.c
15
struct.c
|
@ -316,18 +316,15 @@ struct_new_kw(int argc, const VALUE *argv, VALUE klass)
|
||||||
}
|
}
|
||||||
|
|
||||||
static VALUE
|
static VALUE
|
||||||
setup_struct(VALUE nstr, VALUE members, int keyword_init)
|
setup_struct(VALUE nstr, VALUE members)
|
||||||
{
|
{
|
||||||
long i, len;
|
long i, len;
|
||||||
VALUE (*new_func)(int, const VALUE *, VALUE) = rb_class_new_instance;
|
|
||||||
|
|
||||||
if (keyword_init) new_func = struct_new_kw;
|
|
||||||
|
|
||||||
members = struct_set_members(nstr, members);
|
members = struct_set_members(nstr, members);
|
||||||
|
|
||||||
rb_define_alloc_func(nstr, struct_alloc);
|
rb_define_alloc_func(nstr, struct_alloc);
|
||||||
rb_define_singleton_method(nstr, "new", new_func, -1);
|
rb_define_singleton_method(nstr, "new", struct_new_kw, -1);
|
||||||
rb_define_singleton_method(nstr, "[]", new_func, -1);
|
rb_define_singleton_method(nstr, "[]", struct_new_kw, -1);
|
||||||
rb_define_singleton_method(nstr, "members", rb_struct_s_members_m, 0);
|
rb_define_singleton_method(nstr, "members", rb_struct_s_members_m, 0);
|
||||||
rb_define_singleton_method(nstr, "inspect", rb_struct_s_inspect, 0);
|
rb_define_singleton_method(nstr, "inspect", rb_struct_s_inspect, 0);
|
||||||
len = RARRAY_LEN(members);
|
len = RARRAY_LEN(members);
|
||||||
|
@ -442,7 +439,7 @@ rb_struct_define(const char *name, ...)
|
||||||
|
|
||||||
if (!name) st = anonymous_struct(rb_cStruct);
|
if (!name) st = anonymous_struct(rb_cStruct);
|
||||||
else st = new_struct(rb_str_new2(name), rb_cStruct);
|
else st = new_struct(rb_str_new2(name), rb_cStruct);
|
||||||
return setup_struct(st, ary, 0);
|
return setup_struct(st, ary);
|
||||||
}
|
}
|
||||||
|
|
||||||
VALUE
|
VALUE
|
||||||
|
@ -455,7 +452,7 @@ rb_struct_define_under(VALUE outer, const char *name, ...)
|
||||||
ary = struct_make_members_list(ar);
|
ary = struct_make_members_list(ar);
|
||||||
va_end(ar);
|
va_end(ar);
|
||||||
|
|
||||||
return setup_struct(rb_define_class_under(outer, name, rb_cStruct), ary, 0);
|
return setup_struct(rb_define_class_under(outer, name, rb_cStruct), ary);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -574,7 +571,7 @@ rb_struct_s_def(int argc, VALUE *argv, VALUE klass)
|
||||||
else {
|
else {
|
||||||
st = new_struct(name, klass);
|
st = new_struct(name, klass);
|
||||||
}
|
}
|
||||||
setup_struct(st, rest, (int)keyword_init);
|
setup_struct(st, rest);
|
||||||
rb_ivar_set(st, id_keyword_init, keyword_init);
|
rb_ivar_set(st, id_keyword_init, keyword_init);
|
||||||
if (rb_block_given_p()) {
|
if (rb_block_given_p()) {
|
||||||
rb_mod_module_eval(0, 0, st);
|
rb_mod_module_eval(0, 0, st);
|
||||||
|
|
|
@ -114,10 +114,9 @@ module TestStruct
|
||||||
assert_equal "#{@Struct}::KeywordInitFalse", @Struct::KeywordInitFalse.inspect
|
assert_equal "#{@Struct}::KeywordInitFalse", @Struct::KeywordInitFalse.inspect
|
||||||
assert_equal "#{@Struct}::KeywordInitTrue(keyword_init: true)", @Struct::KeywordInitTrue.inspect
|
assert_equal "#{@Struct}::KeywordInitTrue(keyword_init: true)", @Struct::KeywordInitTrue.inspect
|
||||||
# eval is needed to prevent the warning duplication filter
|
# eval is needed to prevent the warning duplication filter
|
||||||
k = eval("Class.new(@Struct::KeywordInitFalse) {def initialize(**) end}")
|
k = Class.new(@Struct::KeywordInitTrue) {def initialize(b, options); super(a: options, b: b); end}
|
||||||
assert_warn(/Using the last argument as keyword parameters is deprecated/) {k.new(a: 1, b: 2)}
|
o = assert_warn('') { k.new(42, {foo: 1, bar: 2}) }
|
||||||
k = Class.new(@Struct::KeywordInitTrue) {def initialize(**) end}
|
assert_equal(1, o.a[:foo])
|
||||||
assert_warn('') {k.new(a: 1, b: 2)}
|
|
||||||
|
|
||||||
@Struct.instance_eval do
|
@Struct.instance_eval do
|
||||||
remove_const(:KeywordInitTrue)
|
remove_const(:KeywordInitTrue)
|
||||||
|
@ -152,6 +151,17 @@ module TestStruct
|
||||||
assert_equal([1, 2], o.each.to_a)
|
assert_equal([1, 2], o.each.to_a)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def test_initialize_with_kw
|
||||||
|
klass = @Struct.new(:foo, :options) do
|
||||||
|
def initialize(foo, **options)
|
||||||
|
super(foo, options)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
assert_equal({}, klass.new(42, **Hash.new).options)
|
||||||
|
x = assert_warn('') { klass.new(1, bar: 2) }
|
||||||
|
assert_equal 2, x.options[:bar]
|
||||||
|
end
|
||||||
|
|
||||||
def test_each_pair
|
def test_each_pair
|
||||||
klass = @Struct.new(:a, :b)
|
klass = @Struct.new(:a, :b)
|
||||||
o = klass.new(1, 2)
|
o = klass.new(1, 2)
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
# define RUBY_VERSION_MINOR RUBY_API_VERSION_MINOR
|
# define RUBY_VERSION_MINOR RUBY_API_VERSION_MINOR
|
||||||
#define RUBY_VERSION_TEENY 1
|
#define RUBY_VERSION_TEENY 1
|
||||||
#define RUBY_RELEASE_DATE RUBY_RELEASE_YEAR_STR"-"RUBY_RELEASE_MONTH_STR"-"RUBY_RELEASE_DAY_STR
|
#define RUBY_RELEASE_DATE RUBY_RELEASE_YEAR_STR"-"RUBY_RELEASE_MONTH_STR"-"RUBY_RELEASE_DAY_STR
|
||||||
#define RUBY_PATCHLEVEL 113
|
#define RUBY_PATCHLEVEL 114
|
||||||
|
|
||||||
#define RUBY_RELEASE_YEAR 2020
|
#define RUBY_RELEASE_YEAR 2020
|
||||||
#define RUBY_RELEASE_MONTH 7
|
#define RUBY_RELEASE_MONTH 7
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue