class.c: include modules only

* class.c (rb_mod_included_modules): should not include non-modules.
  [ruby-core:53158] [Bug #8025]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40614 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2013-05-08 16:05:50 +00:00
parent 3fd0000c0c
commit e8bdef657a
3 changed files with 17 additions and 2 deletions

View File

@ -1,3 +1,8 @@
Thu May 9 01:05:41 2013 Nobuyoshi Nakada <nobu@ruby-lang.org>
* class.c (rb_mod_included_modules): should not include non-modules.
[ruby-core:53158] [Bug #8025]
Wed May 8 22:46:59 2013 Nobuyoshi Nakada <nobu@ruby-lang.org>
* class.c (rb_mod_included_modules): should not include the original

View File

@ -855,7 +855,9 @@ rb_mod_included_modules(VALUE mod)
for (p = RCLASS_SUPER(mod); p; p = RCLASS_SUPER(p)) {
if (p != origin && BUILTIN_TYPE(p) == T_ICLASS) {
rb_ary_push(ary, RBASIC(p)->klass);
VALUE m = RBASIC(p)->klass;
if (RB_TYPE_P(m, T_MODULE))
rb_ary_push(ary, m);
}
}
return ary;

View File

@ -1552,7 +1552,15 @@ class TestModule < Test::Unit::TestCase
bug8025 = '[ruby-core:53158] [Bug #8025]'
mixin = labeled_module("mixin")
c = labeled_module("c") {prepend mixin}
assert_not_include(c.included_modules, c, bug8025)
im = c.included_modules
assert_not_include(im, c, bug8025)
assert_include(im, mixin, bug8025)
c1 = labeled_class("c1") {prepend mixin}
c2 = labeled_class("c2", c1)
im = c2.included_modules
assert_not_include(im, c1, bug8025)
assert_not_include(im, c2, bug8025)
assert_include(im, mixin, bug8025)
end
def test_class_variables