mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 13:39:04 +02:00
* vm.c (vm_define_method): do not use current CREF immediately,
but check CREF in environment or methods. Methods defined in methods should be public. [Bug #11571] * vm_method.c (rb_scope_module_func_check): check CREF in env or me. if CREF is contained by `me', then return FALSE. * test/ruby/test_method.rb: add a test. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52562 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
dd4cec36ca
commit
25f5dd6799
4 changed files with 50 additions and 10 deletions
10
vm_method.c
10
vm_method.c
|
@ -1045,7 +1045,15 @@ rb_scope_visibility_get(void)
|
|||
static int
|
||||
rb_scope_module_func_check(void)
|
||||
{
|
||||
return CREF_SCOPE_VISI(rb_vm_cref())->module_func;
|
||||
rb_thread_t *th = GET_THREAD();
|
||||
rb_control_frame_t *cfp = rb_vm_get_ruby_level_next_cfp(th, th->cfp);
|
||||
|
||||
if (!vm_env_cref_by_cref(cfp->ep)) {
|
||||
return FALSE;
|
||||
}
|
||||
else {
|
||||
return CREF_SCOPE_VISI(rb_vm_cref())->module_func;
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue