diff options
author | Jeremy Evans <[email protected]> | 2022-06-06 09:57:32 -0700 |
---|---|---|
committer | GitHub <[email protected]> | 2022-06-06 09:57:32 -0700 |
commit | 7cda7fbbdc14f4262afaa94cdeb5a5987f1eb01a (patch) | |
tree | 6f7da1ed9ce694564c932f9dcc15fd6b04b86c0b /internal/class.h | |
parent | b737998d25f1379117fbf11a578462e6ba12037e (diff) |
Add Module#undefined_instance_methods
Implements [Feature #12655]
Co-authored-by: Nobuyoshi Nakada <[email protected]>
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/5733
Merged-By: jeremyevans <[email protected]>
Diffstat (limited to 'internal/class.h')
-rw-r--r-- | internal/class.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/class.h b/internal/class.h index 70e671b2c2..ae680564a6 100644 --- a/internal/class.h +++ b/internal/class.h @@ -149,6 +149,7 @@ VALUE rb_obj_methods(int argc, const VALUE *argv, VALUE obj); VALUE rb_obj_protected_methods(int argc, const VALUE *argv, VALUE obj); VALUE rb_obj_private_methods(int argc, const VALUE *argv, VALUE obj); VALUE rb_obj_public_methods(int argc, const VALUE *argv, VALUE obj); +VALUE rb_class_undefined_instance_methods(VALUE mod); VALUE rb_special_singleton_class(VALUE); VALUE rb_singleton_class_clone_and_attach(VALUE obj, VALUE attach); VALUE rb_singleton_class_get(VALUE obj); |