We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cef7fe0 commit d38bfd9Copy full SHA for d38bfd9
src/main/c/cext/ruby.c
@@ -3524,6 +3524,7 @@ VALUE rb_class_inherited(VALUE super, VALUE klass) {
3524
}
3525
3526
VALUE rb_define_class_id(ID id, VALUE super) {
3527
+ // id is deliberately ignored - see MRI
3528
if (super == NULL) {
3529
super = rb_cObject;
3530
@@ -3535,6 +3536,7 @@ VALUE rb_module_new(void) {
3535
3536
3537
3538
VALUE rb_define_module_id(ID id) {
3539
3540
return rb_module_new();
3541
3542
0 commit comments