Skip to content

Commit

Permalink
nested local variables
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/v1_1r@240 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
matz committed Jun 12, 1998
1 parent 1bc6f59 commit 83687c4
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 42 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Fri Jun 12 17:58:18 1998 Yukihiro Matsumoto <matz@netlab.co.jp>

* eval.c (eval): write back the_dyna_var into the block.

Thu Jun 11 18:19:18 1998 Yukihiro Matsumoto <matz@netlab.co.jp>

* experimental release 1.1b9_25.
Expand Down
57 changes: 18 additions & 39 deletions eval.c
Original file line number Diff line number Diff line change
Expand Up @@ -454,24 +454,25 @@ new_dvar(id, value)
return vars;
}

static struct RVarmap*
static void
push_dvar(id, value)
ID id;
VALUE value;
{
struct RVarmap* vars = new_dvar(id, value);
the_dyna_vars = new_dvar(id, value);
}

if (the_dyna_vars) {
vars->next = the_dyna_vars->next;
static void
mark_dvar(vars)
struct RVarmap* vars;
{
if (!vars) {
the_dyna_vars = new_dvar(0, 0);
the_dyna_vars->next = vars;
}
else {
vars->id = id;
vars->val = 0;
the_dyna_vars = vars;
}

return vars;
}

VALUE
Expand Down Expand Up @@ -502,42 +503,21 @@ dyna_var_ref(id)
return Qnil;
}

static void
dvar_add_compiling(id)
VALUE
dyna_var_asgn(id, value)
ID id;
VALUE value;
{
struct RVarmap *vars = the_dyna_vars;

while (vars) {
if (vars->id == 0) break;
if (vars->id == id) {
return;
vars->val = value;
return value;
}
vars = vars->next;
}
the_dyna_vars = new_dvar(id, 0);
}

VALUE
dyna_var_asgn(id, value)
ID id;
VALUE value;
{
if (id == 0) {
dvar_add_compiling((ID)value);
}
else {
struct RVarmap *vars = the_dyna_vars;

while (vars) {
if (vars->id == id) {
vars->val = value;
return value;
}
vars = vars->next;
}
push_dvar(id, value);
}
push_dvar(id, value);
return value;
}

Expand Down Expand Up @@ -2844,8 +2824,7 @@ rb_yield_0(val, self)
old_scope = the_scope;
the_scope = block->scope;
the_block = block->prev;
the_dyna_vars = new_dvar(0, 0);
the_dyna_vars->next = block->d_vars;
mark_dvar(block->d_vars);
the_class = block->klass;
if (!self) self = block->self;
node = block->body;
Expand Down Expand Up @@ -3018,7 +2997,6 @@ rb_iterate(it_proc, data1, bl_proc, data2)
iter_retry:
PUSH_ITER(ITER_PRE);
PUSH_BLOCK(0, node);
_block.d_vars = new_dvar(0,0);
PUSH_TAG(PROT_NONE);

state = EXEC_TAG();
Expand Down Expand Up @@ -3819,7 +3797,7 @@ eval(self, src, scope, file, line)
old_block = the_block;
the_block = data->prev;
old_d_vars = the_dyna_vars;
the_dyna_vars = data->d_vars;
mark_dvar(data->d_vars);
old_vmode = scope_vmode;
scope_vmode = data->vmode;

Expand Down Expand Up @@ -3856,6 +3834,7 @@ eval(self, src, scope, file, line)
the_frame = the_frame->prev;
the_scope = old_scope;
the_block = old_block;
data->d_vars = the_dyna_vars;
the_dyna_vars = old_d_vars;
data->vmode = scope_vmode; /* write back visibility mode */
scope_vmode = old_vmode;
Expand Down
2 changes: 1 addition & 1 deletion ext/Setup
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
#md5
#socket
#tkutil
tcltklib
#tcltklib
#gtk
4 changes: 3 additions & 1 deletion parse.y
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,7 @@ static void top_local_setup();

%%
program : {
$<vars>$ = the_dyna_vars;
lex_state = EXPR_BEG;
top_local_init();
NEW_CREF0(); /* initialize constant c-ref */
Expand All @@ -248,6 +249,7 @@ program : {
top_local_setup();
cur_cref = 0;
class_nest = 0;
the_dyna_vars = $<vars>1;
}

compstmt : stmts opt_terms
Expand Down Expand Up @@ -3424,7 +3426,7 @@ assignable(id, val)
}
else{
if (!dyna_var_defined(id)) {
dyna_var_asgn(0, id);
dyna_var_asgn(id, 0);
}
lhs = NEW_DASGN(id, val);
}
Expand Down
12 changes: 11 additions & 1 deletion sample/test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -653,7 +653,6 @@ def aaa(a, b=100, *rest)
$x=0
$proc.call(5)
$proc2.call
p $x
ok($x == 5)

if defined? Process.kill
Expand Down Expand Up @@ -739,6 +738,17 @@ module EvTest
end
ok(!$bad)

x = proc{}
eval "i = 1", x
ok(eval("i", x) == 1)
x = proc{proc{}}.call
eval "i = 22", x
ok(eval("i", x) == 22)
$x = []
x = proc{proc{}}.call
eval "(0..9).each{|i4| $x[i4] = proc{i4*2}}", x
ok($x[4].call == 8)

check "system"
ok(`echo foobar` == "foobar\n")
ok(`./ruby -e 'print "foobar"'` == 'foobar')
Expand Down

0 comments on commit 83687c4

Please sign in to comment.