aboutsummaryrefslogtreecommitdiffstats
path: root/eval_method.ci
diff options
context:
space:
mode:
Diffstat (limited to 'eval_method.ci')
-rw-r--r--eval_method.ci10
1 files changed, 8 insertions, 2 deletions
diff --git a/eval_method.ci b/eval_method.ci
index a647335ed6..5dfcdfacb6 100644
--- a/eval_method.ci
+++ b/eval_method.ci
@@ -305,8 +305,14 @@ remove_method(VALUE klass, ID mid)
if (mid == object_id || mid == __send || mid == __send_bang || mid == init) {
rb_warn("removing `%s' may cause serious problem", rb_id2name(mid));
}
- if (!st_delete(RCLASS(klass)->m_tbl, &mid, &data) ||
- !(body = (NODE *)data) || !body->nd_body) {
+ if (st_lookup(RCLASS(klass)->m_tbl, mid, &data)) {
+ body = (NODE *)data;
+ if (!body || !body->nd_body) body = 0;
+ else {
+ st_delete(RCLASS(klass)->m_tbl, &mid, &data);
+ }
+ }
+ if (!body) {
rb_name_error(mid, "method `%s' not defined in %s",
rb_id2name(mid), rb_class2name(klass));
}