mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
iseq.c: resurrect literal hash operands
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66472 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
97587ed4e9
commit
feb78840c8
1 changed files with 3 additions and 0 deletions
3
iseq.c
3
iseq.c
|
@ -51,6 +51,9 @@ obj_resurrect(VALUE obj)
|
|||
case T_ARRAY:
|
||||
obj = rb_ary_resurrect(obj);
|
||||
break;
|
||||
case T_HASH:
|
||||
obj = rb_hash_resurrect(obj);
|
||||
break;
|
||||
}
|
||||
}
|
||||
return obj;
|
||||
|
|
Loading…
Reference in a new issue