aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-07-28 18:14:11 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-07-28 18:14:11 +0000
commit497ee63f8d8c5df055efa6b8782a07ebdbcb0443 (patch)
treee31baf8445e375467352472559e373e2175fb5f3
parent9050b61dcbee9bbd5ad9e494de65cd4cd3103af8 (diff)
downloadruby-497ee63f8d8c5df055efa6b8782a07ebdbcb0443.tar.gz
* proc.c (rb_method_entry_arity): support not_implemented method.
(I have no idea to test it) git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24307 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--proc.c6
2 files changed, 9 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index c698c7da5d..e52e84931c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Wed Jul 29 03:11:59 2009 Koichi Sasada <ko1@atdot.net>
+
+ * proc.c (rb_method_entry_arity): support not_implemented method.
+ (I have no idea to test it)
+
Tue Jul 28 19:36:26 2009 Koichi Sasada <ko1@atdot.net>
* proc.c (rb_method_entry_arity): support optimized method (send).
diff --git a/proc.c b/proc.c
index 3b83b17c3b..1d5189a844 100644
--- a/proc.c
+++ b/proc.c
@@ -1487,6 +1487,9 @@ rb_method_entry_arity(const rb_method_entry_t *me)
return -(iseq->argc + 1 + iseq->arg_post_len);
}
}
+ case VM_METHOD_TYPE_UNDEF:
+ case VM_METHOD_TYPE_NOTIMPLEMENTED:
+ return 0;
case VM_METHOD_TYPE_OPTIMIZED: {
switch (me->body.optimize_type) {
case OPTIMIZED_METHOD_TYPE_SEND:
@@ -1495,9 +1498,8 @@ rb_method_entry_arity(const rb_method_entry_t *me)
break;
}
}
- default:
- rb_bug("rb_method_entry_arity: invalid method entry type (%d)", me->type);
}
+ rb_bug("rb_method_entry_arity: invalid method entry type (%d)", me->type);
}
/*