зеркало из https://github.com/github/ruby.git
variable.c: resolve permanent name only
* variable.c (rb_const_set): resolve and cache class name immediately only if the outer class/module has the name, otherwise just set the ID. [ruby-core:79007] [Bug #13113] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57284 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
8e98002701
Коммит
faf472a2bb
|
@ -2612,8 +2612,13 @@ rb_const_set(VALUE klass, ID id, VALUE val)
|
|||
* and avoid order-dependency on const_tbl
|
||||
*/
|
||||
if (rb_cObject && (RB_TYPE_P(val, T_MODULE) || RB_TYPE_P(val, T_CLASS))) {
|
||||
if (!NIL_P(rb_class_path_cached(val))) {
|
||||
rb_name_class(val, id);
|
||||
if (rb_class_path_cached(klass)) {
|
||||
rb_class_name(val);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
|
@ -2660,7 +2665,8 @@ const_tbl_update(struct autoload_const_set_args *args)
|
|||
}
|
||||
rb_clear_constant_cache();
|
||||
setup_const_entry(ce, klass, val, visibility);
|
||||
} else {
|
||||
}
|
||||
else {
|
||||
rb_clear_constant_cache();
|
||||
|
||||
ce = ZALLOC(rb_const_entry_t);
|
||||
|
|
Загрузка…
Ссылка в новой задаче