Skip to content

Commit 58a92e6

Browse files
committedJan 27, 2014
Kernel#is_a? should check against included modules as well
1 parent 5a14d13 commit 58a92e6

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed
 

‎opal/corelib/runtime.js

+6
Original file line numberDiff line numberDiff line change
@@ -614,6 +614,12 @@
614614
return true;
615615
}
616616

617+
for (var i = 0, length = search.__inc__.length; i < length; i++) {
618+
if (search.__inc__[i] == klass) {
619+
return true;
620+
}
621+
}
622+
617623
search = search._super;
618624
}
619625

0 commit comments

Comments
 (0)
Please sign in to comment.