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:
nobu 2018-12-20 23:21:50 +00:00
Родитель 97587ed4e9
Коммит feb78840c8
1 изменённых файлов: 3 добавлений и 0 удалений

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;