summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--proc.c16
-rw-r--r--test/ruby/test_proc.rb1
-rw-r--r--vm.c21
4 files changed, 31 insertions, 13 deletions
diff --git a/ChangeLog b/ChangeLog
index d51cb559fe..426c60bac0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Mon Sep 21 17:12:10 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * proc.c (proc_binding): allow proc from method. [ruby-core:25589]
+
+ * vm.c (collect_local_variables_in_env): block iseq can be NULL.
+
Mon Sep 21 10:13:22 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
* cont.c (cont_new, cont_capture, fiber_t_alloc): needs already
diff --git a/proc.c b/proc.c
index 0398fb2ec6..2ff020e1fd 100644
--- a/proc.c
+++ b/proc.c
@@ -33,6 +33,8 @@ rb_iseq_t *rb_method_get_iseq(VALUE method);
/* Proc */
+#define IS_METHOD_PROC_NODE(node) (nd_type(node) == NODE_IFUNC && (node)->nd_cfnc == bmcall)
+
static void
proc_free(void *ptr)
{
@@ -633,7 +635,7 @@ rb_proc_arity(VALUE self)
}
else {
NODE *node = (NODE *)iseq;
- if (nd_type(node) == NODE_IFUNC && node->nd_cfnc == bmcall) {
+ if (IS_METHOD_PROC_NODE(node)) {
/* method(:foo).to_proc.arity */
return method_arity(node->nd_tval);
}
@@ -654,7 +656,7 @@ get_proc_iseq(VALUE self, int *is_proc)
if (!RUBY_VM_NORMAL_ISEQ_P(iseq)) {
NODE *node = (NODE *)iseq;
iseq = 0;
- if (nd_type(node) == NODE_IFUNC && node->nd_cfnc == bmcall) {
+ if (IS_METHOD_PROC_NODE(node)) {
/* method(:foo).to_proc */
iseq = rb_method_get_iseq(node->nd_tval);
if (is_proc) *is_proc = 0;
@@ -1807,16 +1809,18 @@ static VALUE
proc_binding(VALUE self)
{
rb_proc_t *proc;
- VALUE bindval = binding_alloc(rb_cBinding);
+ VALUE bindval;
rb_binding_t *bind;
GetProcPtr(self, proc);
- GetBindingPtr(bindval, bind);
-
if (TYPE(proc->block.iseq) == T_NODE) {
- rb_raise(rb_eArgError, "Can't create Binding from C level Proc");
+ if (!IS_METHOD_PROC_NODE((NODE *)proc->block.iseq)) {
+ rb_raise(rb_eArgError, "Can't create Binding from C level Proc");
+ }
}
+ bindval = binding_alloc(rb_cBinding);
+ GetBindingPtr(bindval, bind);
bind->env = proc->envval;
return bindval;
}
diff --git a/test/ruby/test_proc.rb b/test/ruby/test_proc.rb
index 5a00fdb123..6c2bae4c41 100644
--- a/test/ruby/test_proc.rb
+++ b/test/ruby/test_proc.rb
@@ -144,6 +144,7 @@ class TestProc < Test::Unit::TestCase
def test_method_to_proc
b = block()
assert_equal "OK", b.call
+ assert_instance_of(Binding, b.binding, '[ruby-core:25589]')
end
def test_curry
diff --git a/vm.c b/vm.c
index 4254fd94bb..5866f63a1d 100644
--- a/vm.c
+++ b/vm.c
@@ -381,19 +381,26 @@ vm_make_env_each(rb_thread_t * const th, rb_control_frame_t * const cfp,
}
static int
-collect_local_variables_in_env(rb_env_t * const env, const VALUE ary)
+collect_local_variables_in_iseq(rb_iseq_t *iseq, const VALUE ary)
{
int i;
- for (i = 0; i < env->block.iseq->local_table_size; i++) {
- ID lid = env->block.iseq->local_table[i];
+ if (!iseq) return 0;
+ for (i = 0; i < iseq->local_table_size; i++) {
+ ID lid = iseq->local_table[i];
if (rb_is_local_id(lid)) {
rb_ary_push(ary, ID2SYM(lid));
}
}
- if (env->prev_envval) {
- rb_env_t *prevenv;
- GetEnvPtr(env->prev_envval, prevenv);
- collect_local_variables_in_env(prevenv, ary);
+ return 1;
+}
+
+static int
+collect_local_variables_in_env(rb_env_t * env, const VALUE ary)
+{
+
+ while (collect_local_variables_in_iseq(env->block.iseq, ary),
+ env->prev_envval) {
+ GetEnvPtr(env->prev_envval, env);
}
return 0;
}