We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
1 parent ba205fb commit 9de733fCopy full SHA for 9de733f
corelib/module.rb
@@ -54,6 +54,11 @@ def ancestors
54
55
while (parent) {
56
result.push(parent);
57
+
58
+ if (parent.$included_modules) {
59
+ result = result.concat(parent.$included_modules)
60
+ }
61
62
parent = parent._super;
63
}
64
spec/filters/bugs/array.rb
@@ -1,5 +1,4 @@
1
opal_filter "Array" do
2
- fails "Array includes Enumerable"
3
fails "Array#at raises a TypeError when the passed argument can't be coerced to Integer"
4
5
fails "Array#clone copies singleton methods"
0 commit comments