mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Add Method#original_name code example [ci skip]
* proc.c (method_original_name): [DOC] add code example. [Fix GH-1693] Author: Seiei Miyagi <hanachin@gmail.com> git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59720 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
0118b98545
commit
caf92db486
1 changed files with 6 additions and 0 deletions
6
proc.c
6
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
|
||||
|
|
Loading…
Add table
Reference in a new issue