зеркало из https://github.com/github/ruby.git
* vm.c (vm_define_method): don't use `th` any more.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60512 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
c12897cbea
Коммит
6d803d4391
6
vm.c
6
vm.c
|
@ -2589,7 +2589,7 @@ rb_thread_alloc(VALUE klass)
|
|||
}
|
||||
|
||||
static void
|
||||
vm_define_method(rb_thread_t *th, VALUE obj, ID id, VALUE iseqval, int is_singleton)
|
||||
vm_define_method(VALUE obj, ID id, VALUE iseqval, int is_singleton)
|
||||
{
|
||||
VALUE klass;
|
||||
rb_method_visibility_t visi;
|
||||
|
@ -2629,7 +2629,7 @@ static VALUE
|
|||
m_core_define_method(VALUE self, VALUE sym, VALUE iseqval)
|
||||
{
|
||||
REWIND_CFP({
|
||||
vm_define_method(GET_THREAD(), Qnil, SYM2ID(sym), iseqval, FALSE);
|
||||
vm_define_method(Qnil, SYM2ID(sym), iseqval, FALSE);
|
||||
});
|
||||
return sym;
|
||||
}
|
||||
|
@ -2638,7 +2638,7 @@ static VALUE
|
|||
m_core_define_singleton_method(VALUE self, VALUE cbase, VALUE sym, VALUE iseqval)
|
||||
{
|
||||
REWIND_CFP({
|
||||
vm_define_method(GET_THREAD(), cbase, SYM2ID(sym), iseqval, TRUE);
|
||||
vm_define_method(cbase, SYM2ID(sym), iseqval, TRUE);
|
||||
});
|
||||
return sym;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче