diff --git a/eval.c b/eval.c index e8d4f7d14c..5f5152b1f8 100644 --- a/eval.c +++ b/eval.c @@ -7699,6 +7699,15 @@ rb_exec_end_proc(void) * If called from inside of an aliased method it will return the original * nonaliased name. * If called outside of a method, it returns nil. + * + * def foo + * __method__ + * end + * alias bar foo + * + * foo # => :foo + * bar # => :foo + * * See also \_\_callee__. * */ @@ -7723,6 +7732,15 @@ rb_f_method_name(void) * If called from inside of an aliased method it will return the aliased * name. * If called outside of a method, it returns nil. + * + * def foo + * __callee__ + * end + * alias bar foo + * + * foo # => :foo + * bar # => :bar + * * See also \_\_method__. * */ @@ -8465,6 +8483,7 @@ rb_proc_yield(int argc, VALUE *argv, VALUE proc) return proc_invoke(proc, rb_ary_new4(argc, argv), Qundef, 0, 0); } +/* :nodoc: */ static VALUE nil_yield(int argc, VALUE *argv) {