ruby-changes:54263
From: nobu <ko1@a...>
Date: Fri, 21 Dec 2018 08:21:55 +0900 (JST)
Subject: [ruby-changes:54263] nobu:r66472 (trunk): iseq.c: resurrect literal hash operands
nobu 2018-12-21 08:21:50 +0900 (Fri, 21 Dec 2018) New Revision: 66472 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=66472 Log: iseq.c: resurrect literal hash operands Modified files: trunk/iseq.c Index: iseq.c =================================================================== --- iseq.c (revision 66471) +++ iseq.c (revision 66472) @@ -51,6 +51,9 @@ obj_resurrect(VALUE obj) https://github.com/ruby/ruby/blob/trunk/iseq.c#L51 case T_ARRAY: obj = rb_ary_resurrect(obj); break; + case T_HASH: + obj = rb_hash_resurrect(obj); + break; } } return obj; -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/