Module#prepend - #2885
Conversation
Currently kind_of fails miserably, still looking for the reason
And of course, some of them fail miserably
Not sure if this apart of the ISO standard, so make sure its not misrepresented
Prepended modules would include their origin ICLASS
Also tried to fix it, however the problem lies with how aliased methods are done and their internal structure. mruby simply aliases methods by grabbing the RProc and giving it a new name, super then determines the original method to call by using the name so a method called m, aliased as m2, will call the m2 super method instead of m
Based on the gc patch by ko1 ruby/ruby@5922c95
There was a problem hiding this comment.
I think MRB_FLAG_IS_INSTANCE should be renamed to MRB_INSTANCE_TT_MASK since it's a mask for instance type tag.
There was a problem hiding this comment.
@take-cheeze Ah, right, okay, I've changed it, can you review again?
|
Thank you for the implementation. I will merge this. But I need at least a few days to review the patch, sinch the change is huge. |
There was a problem hiding this comment.
static or declare it in a header: mruby.h like mrb_include_module() or maybe even mruby/class.h because it won't be used that often.
There was a problem hiding this comment.
Ah, we missed that one, thanks!
Since I can't forsee any reason to use it directly inplace of using prepend/include
|
Hi @matz, sorry for the bother, any updates on this? |
|
Finally I took time to review this pull request. Sorry for being so late. The PR seems fine except for on thing. You have added If you are willing to address this issue, I'd love to wait. If you are not, I will take time to fix, but you may have to wait longer in this case. |
|
Hi @matz, in the original pull request description we pointed out "RClass struct size is now bigger, because we needed to add origin, but that seems unavoidable." I'd be happy to try and implement an alternative, however I have no idea how that would look like. |
|
A golden opportunity to remove |
|
🎉 🎈 🎉 thanks matz! |
|
@matz, sure, but segregating into a small number of object types, say, |
Hi, we requested Module#prepend, so about a year later we figured what the heck and went ahead and implemented it.
We've gone and ported over the original ruby commits by ko1 and nobu over to mruby, all tests currently pass. RClass struct size is now bigger, because we needed to add
origin, but that seems unavoidable./cc @matz @cremno @zzak
Closes #2082.