mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* proc.c (method_super_method): [DOC] Method#super_method
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46965 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
b4981594dd
commit
1788d08d25
2 changed files with 7 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
Sun Jul 27 01:46:34 2014 Zachary Scott <e@zzak.io>
|
||||
|
||||
* proc.c (method_super_method): [DOC] Method#super_method
|
||||
|
||||
Sun Jul 27 01:22:39 2014 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* proc.c (method_super_method): new method Method#super_method,
|
||||
|
|
3
proc.c
3
proc.c
|
@ -2422,6 +2422,9 @@ method_proc(VALUE method)
|
|||
return procval;
|
||||
}
|
||||
|
||||
/*
|
||||
* Returns a Method of superclass, which would be called when super is used.
|
||||
*/
|
||||
static VALUE
|
||||
method_super_method(VALUE method)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue