This commit is contained in:
Nobuyoshi Nakada 2020-07-19 23:13:21 +09:00
Родитель 2eaa53e9a3
Коммит d637208abd
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 7CD2805BFA3770C6
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -130,7 +130,7 @@ rb_clear_constant_cache(void)
static rb_method_entry_t *rb_method_entry_alloc(ID called_id, VALUE owner, VALUE defined_class, const rb_method_definition_t *def);
const rb_method_entry_t * rb_method_entry_clone(const rb_method_entry_t *src_me);
static const rb_callable_method_entry_t *copmplemented_callable_method_entry(VALUE klass, ID id);
static const rb_callable_method_entry_t *complemented_callable_method_entry(VALUE klass, ID id);
static void
clear_method_cache_by_id_in_class(VALUE klass, ID mid)
@ -160,7 +160,7 @@ clear_method_cache_by_id_in_class(VALUE klass, ID mid)
RB_DEBUG_COUNTER_INC(cc_invalidate_leaf);
}
else {
const rb_callable_method_entry_t *cme = copmplemented_callable_method_entry(klass, mid);
const rb_callable_method_entry_t *cme = complemented_callable_method_entry(klass, mid);
if (cme) {
// invalidate cme if found to invalidate the inline method cache.
@ -991,7 +991,7 @@ prepare_callable_method_entry(VALUE defined_class, ID id, const rb_method_entry_
}
static const rb_callable_method_entry_t *
copmplemented_callable_method_entry(VALUE klass, ID id)
complemented_callable_method_entry(VALUE klass, ID id)
{
VALUE defined_class;
rb_method_entry_t *me = search_method_protect(klass, id, &defined_class);