aboutsummaryrefslogtreecommitdiffstats
path: root/eval_method.h
diff options
context:
space:
mode:
Diffstat (limited to 'eval_method.h')
-rw-r--r--eval_method.h17
1 files changed, 13 insertions, 4 deletions
diff --git a/eval_method.h b/eval_method.h
index d0351c82e1..fb19af5f25 100644
--- a/eval_method.h
+++ b/eval_method.h
@@ -293,6 +293,11 @@ remove_method(VALUE klass, ID mid)
rb_name_error(mid, "method `%s' not defined in %s",
rb_id2name(mid), rb_class2name(klass));
}
+
+ if (nd_type(body->nd_body->nd_body) == NODE_CFUNC) {
+ rb_vm_check_redefinition_opt_method(body);
+ }
+
rb_clear_cache_for_undef(klass, mid);
if (FL_TEST(klass, FL_SINGLETON)) {
rb_funcall(rb_iv_get(klass, "__attached__"), singleton_removed, 1,
@@ -559,10 +564,14 @@ rb_alias(VALUE klass, ID name, ID def)
orig_fbody->nd_cnt++;
- if (RTEST(ruby_verbose) &&
- st_lookup(RCLASS(klass)->m_tbl, name, (st_data_t *) & node)) {
- if (node && node->nd_cnt == 0 && node->nd_body) {
- rb_warning("discarding old %s", rb_id2name(name));
+ if (st_lookup(RCLASS(klass)->m_tbl, name, (st_data_t *) & node)) {
+ if (node) {
+ if (RTEST(ruby_verbose) && node->nd_cnt == 0 && node->nd_body) {
+ rb_warning("discarding old %s", rb_id2name(name));
+ }
+ if (nd_type(node->nd_body->nd_body) == NODE_CFUNC) {
+ rb_vm_check_redefinition_opt_method(node);
+ }
}
}