accessing method visibilities - #2778
Closed
nobu wants to merge 2 commits into
Closed
Conversation
| 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_obj_undefined_methods(int argc, const VALUE *argv, VALUE obj); |
There was a problem hiding this comment.
wasn't this moved to internal/class.h ?
also, what happen to this other function that was present in the original patch?
int rb_obj_basic_to_s_p(VALUE);
nobu
force-pushed
the
feature/12655-accessing-method-visibilities
branch
from
December 27, 2019 08:26
565e0f2 to
597028a
Compare
|
will this make it for Ruby 3.1 for Xmas 2021? |
|
was this replaced by something else? |
nobu
force-pushed
the
feature/12655-accessing-method-visibilities
branch
from
November 4, 2021 03:55
597028a to
c0d275e
Compare
* class.c (rb_class_undefined_instance_methods): new method Module#undefined_instance_methods. * class.c (rb_obj_undefined_methods): new method Kernel#undefined_methods. [Feature ruby#12655] accessing a method visibility
* class.c (rb_singleton_instance): new method Class#singleton_instance. [Feature ruby#12655] accessing a method visibility
nobu
force-pushed
the
feature/12655-accessing-method-visibilities
branch
from
March 15, 2022 08:54
c0d275e to
3007b5b
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Feature #12655