git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10241 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2006-06-10 06:17:11 +00:00
Родитель d1a664a464
Коммит c053ad38cf
1 изменённых файлов: 19 добавлений и 0 удалений

19
eval.c
Просмотреть файл

@ -7699,6 +7699,15 @@ rb_exec_end_proc(void)
* If called from inside of an aliased method it will return the original * If called from inside of an aliased method it will return the original
* nonaliased name. * nonaliased name.
* If called outside of a method, it returns <code>nil</code>. * If called outside of a method, it returns <code>nil</code>.
*
* def foo
* __method__
* end
* alias bar foo
*
* foo # => :foo
* bar # => :foo
*
* See also <code>\_\_callee__</code>. * See also <code>\_\_callee__</code>.
* *
*/ */
@ -7723,6 +7732,15 @@ rb_f_method_name(void)
* If called from inside of an aliased method it will return the aliased * If called from inside of an aliased method it will return the aliased
* name. * name.
* If called outside of a method, it returns <code>nil</code>. * If called outside of a method, it returns <code>nil</code>.
*
* def foo
* __callee__
* end
* alias bar foo
*
* foo # => :foo
* bar # => :bar
*
* See also <code>\_\_method__</code>. * See also <code>\_\_method__</code>.
* *
*/ */
@ -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); return proc_invoke(proc, rb_ary_new4(argc, argv), Qundef, 0, 0);
} }
/* :nodoc: */
static VALUE static VALUE
nil_yield(int argc, VALUE *argv) nil_yield(int argc, VALUE *argv)
{ {