Well, ability to declare private methods inside class methods seems strange given that it's not possible to declare private methods inside instance methods:
classCdeffooprivatedefbarendendendC.new.foo# NoMethodError is raised
Does private actually make sense on any class-method / singleton method?
I understand it as a limitation for methods on the class, where outside
calls are not allowed, only internal ones (though ruby allows one to
bypass these anyway via .send).
We looked at this issue in yesterday's developer meeting.
The use of private in evolve75/RubyTree shown in the description is in fact wrong (methods are defined in a wrong place). That example made us think that the use of private in a method is a code smell.
We would forbid such usage in a future. For the time being, let us show warning message.
The warning discussed has not been added yet. Attached is a patch that implements it. While it passes make check, there may be corner cases it doesn't handle. I would appreciate review of the changes to vm_cref_set_visibility.
Is it necessary that check is placed inside the function vm_cref_set_visibility?
What about calling a separate function where check_method flag is 1?
I agree, that makes more sense.
rb_frame_callee returns the called name, that may be an aliased name.
Is it intentional?
No. It would be better to use rb_frame_this_func instead, I think.
Thank you very much for your review. I've added the modified patch as a pull request (https://github.com/ruby/ruby/pull/2562). Assuming it passes CI, I will merge it.