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

Fix imemo_name to dump new imemo types

New IMEMO types were introduced, this just fixes the function that
converts the type to support the new types.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61377 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
tenderlove 2017-12-21 00:40:54 +00:00
parent 3b174fb7d6
commit 2c075d3863

View file

@ -205,6 +205,9 @@ imemo_name(int imemo)
TYPE_STR(memo); TYPE_STR(memo);
TYPE_STR(ment); TYPE_STR(ment);
TYPE_STR(iseq); TYPE_STR(iseq);
TYPE_STR(alloc);
TYPE_STR(ast);
TYPE_STR(parser_strterm);
default: default:
return "unknown"; return "unknown";
#undef TYPE_STR #undef TYPE_STR