1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* compile.c (iseq_compile_each): just freeze xstr.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22271 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2009-02-12 16:45:18 +00:00
parent 11a4e69447
commit ae6ba9f084
2 changed files with 4 additions and 2 deletions

View file

@ -1,8 +1,10 @@
Fri Feb 13 01:29:16 2009 Nobuyoshi Nakada <nobu@ruby-lang.org> Fri Feb 13 01:45:17 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
* compile.c (iseq_set_sequence, compile_dstr_fragments), * compile.c (iseq_set_sequence, compile_dstr_fragments),
(iseq_compile_each): hides other internal objects. (iseq_compile_each): hides other internal objects.
* compile.c (iseq_compile_each): just freeze xstr.
Fri Feb 13 00:48:42 2009 Nobuyoshi Nakada <nobu@ruby-lang.org> Fri Feb 13 00:48:42 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
* insns.def (defineclass): try to autoload const to be overridden. * insns.def (defineclass): try to autoload const to be overridden.

View file

@ -4371,7 +4371,7 @@ iseq_compile_each(rb_iseq_t *iseq, LINK_ANCHOR *ret, NODE * node, int poped)
break; break;
} }
case NODE_XSTR:{ case NODE_XSTR:{
hide_obj(node->nd_lit); OBJ_FREEZE(node->nd_lit);
ADD_CALL_RECEIVER(ret, nd_line(node)); ADD_CALL_RECEIVER(ret, nd_line(node));
ADD_INSN1(ret, nd_line(node), putobject, node->nd_lit); ADD_INSN1(ret, nd_line(node), putobject, node->nd_lit);
ADD_CALL(ret, nd_line(node), ID2SYM(idBackquote), INT2FIX(1)); ADD_CALL(ret, nd_line(node), ID2SYM(idBackquote), INT2FIX(1));