Actions
Bug #11301
closedModule#prepend should have always added the module before the current
Bug #11301:
Module#prepend should have always added the module before the current
Description
I don't think it's ideal:
module M
end
class A
prepend M
end
A.ancestors
# => [M, A, Object, PP::ObjectMixin, Kernel, BasicObject]
class B<A
prepend M
end
B.ancestors
# => [B, M, A, Object, PP::ObjectMixin, Kernel, BasicObject]
It should be either error (for not adding module) or the module appearing multiple times,
i.e. B.ancestors to be
Matz.
Updated by nobu (Nobuyoshi Nakada) about 11 years ago
- Description updated (diff)
I think we have tried it some times but not made a conclusion.
Change Module#prepend only?
Updated by jeremyevans0 (Jeremy Evans) about 7 years ago
- Status changed from Open to Closed
This was fixed between Ruby 2.2 and Ruby 2.3:
Actions