Skip to content

Commit

Permalink
rescue NameError from class variable access like @@foo ||= 42; fix #…
Browse files Browse the repository at this point in the history
  • Loading branch information
matz committed Mar 20, 2016
1 parent 643d967 commit a02acf2
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
9 changes: 4 additions & 5 deletions mrbgems/mruby-compiler/core/codegen.c
Original file line number Diff line number Diff line change
Expand Up @@ -1221,13 +1221,12 @@ codegen(codegen_scope *s, node *tree, int val)
int onerr, noexc, exend, pos1, pos2, tmp;
struct loopinfo *lp;

if (tree->car == NULL) return;
onerr = genop(s, MKOP_Bx(OP_ONERR, 0));
lp = loop_push(s, LOOP_BEGIN);
lp->pc1 = onerr;
if (tree->car) {
codegen(s, tree->car, val);
if (val) pop();
}
codegen(s, tree->car, VAL);
pop();
lp->type = LOOP_RESCUE;
noexc = genop(s, MKOP_Bx(OP_JMP, 0));
dispatch(s, onerr);
Expand Down Expand Up @@ -1709,7 +1708,7 @@ codegen(codegen_scope *s, node *tree, int val)
pop();
gen_assignment(s, tree->car, cursp(), val);
dispatch(s, pos);
break;
return;
}
codegen(s, tree->cdr->cdr->car, VAL);
push(); pop();
Expand Down
8 changes: 7 additions & 1 deletion mrbgems/mruby-compiler/core/parse.y
Original file line number Diff line number Diff line change
Expand Up @@ -707,7 +707,13 @@ new_masgn(parser_state *p, node *a, node *b)
static node*
new_op_asgn(parser_state *p, node *a, mrb_sym op, node *b)
{
return list4((node*)NODE_OP_ASGN, a, nsym(op), b);
if (op == mrb_intern_lit(p->mrb, "||") && (intptr_t)a->car == NODE_CVAR) {
return new_rescue(p, a, list1(list3(list1(new_cvar(p, mrb_intern_lit(p->mrb, "NameError"))),
0, new_asgn(p, a, b))), NULL);
}
else {
return list4((node*)NODE_OP_ASGN, a, nsym(op), b);
}
}

/* (:int . i) */
Expand Down

0 comments on commit a02acf2

Please sign in to comment.