From caf92db48646a0b2febcd69f2e9a9a6734074a68 Mon Sep 17 00:00:00 2001 From: nobu Date: Sat, 2 Sep 2017 01:41:14 +0000 Subject: [PATCH] Add Method#original_name code example [ci skip] * proc.c (method_original_name): [DOC] add code example. [Fix GH-1693] Author: Seiei Miyagi git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59720 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- proc.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/proc.c b/proc.c index f35994b111..c4a5ad5cb4 100644 --- a/proc.c +++ b/proc.c @@ -1606,6 +1606,12 @@ method_name(VALUE obj) * meth.original_name -> symbol * * Returns the original name of the method. + * + * class C + * def foo; end + * alias bar foo + * end + * C.method(:bar).original_name # => :foo */ static VALUE