aboutsummaryrefslogtreecommitdiffstats
path: root/proc.c
diff options
context:
space:
mode:
Diffstat (limited to 'proc.c')
-rw-r--r--proc.c28
1 files changed, 1 insertions, 27 deletions
diff --git a/proc.c b/proc.c
index f81483c7b1..faede42d49 100644
--- a/proc.c
+++ b/proc.c
@@ -467,36 +467,10 @@ check_local_id(VALUE bindval, volatile VALUE *pname)
static VALUE
bind_local_variables(VALUE bindval)
{
- VALUE ary = rb_ary_new();
-
const rb_binding_t *bind;
- const rb_env_t *env;
- VALUE envval;
GetBindingPtr(bindval, bind);
-
- envval = bind->env;
-
- do {
- const rb_iseq_t *iseq;
- int i;
- ID id;
-
- GetEnvPtr(envval, env);
- iseq = env->block.iseq;
-
- for (i = 0; i < iseq->local_table_size; i++) {
- id = iseq->local_table[i];
- if (id) {
- const char *vname = rb_id2name(id);
- if (vname) {
- rb_ary_push(ary, ID2SYM(id));
- }
- }
- }
- } while ((envval = env->prev_envval) != 0);
-
- return ary;
+ return rb_vm_env_local_variables(bind->env);
}
/*