Rubinius 中的 mixin 在哪里实现?
Rubinius源代码中的哪里是负责包含模块的代码?(具体来说,将模块放置为对象类的超类。)
Where in the Rubinius source is the code that is responsible for including modules?(Specifically, to place module as super class of object class.)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您查看
Module#include
的文档,您会发现它委托给Module#append_features
:Module#append_features
的文档又(非常简要地)描述了如何默认的 Ruby mixin 算法工作原理:如果您查看
Module#append_features
在 Rubinius 源代码中,你会发现它是Module#include_into
的别名:所以,最后,
Module#include_into
是真正的交易:您的具体问题:
在 这个循环< /a>:
留意
insert_at
。If you look at the documentation for
Module#include
, you’ll find that it delegates toModule#append_features
:The documentation for
Module#append_features
, in turn, describes (very briefly) how the default Ruby mixin algorithm works:If you look at
Module#append_features
in the Rubinius sourcecode, you’ll find that it is an alias forModule#include_into
:So, finally,
Module#include_into
is the real deal:Your specific question:
is answered in this loop:
Watch for
insert_at
.