ruby-changes:38040
From: nobu <ko1@a...>
Date: Mon, 30 Mar 2015 15:24:55 +0900 (JST)
Subject: [ruby-changes:38040] nobu:r50121 (trunk): error.c: update builtin_types
nobu 2015-03-30 15:24:40 +0900 (Mon, 30 Mar 2015) New Revision: 50121 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=50121 Log: error.c: update builtin_types * error.c (builtin_types): update for r49932, insert T_IMEMO and move T_UNDEF. Modified files: trunk/error.c Index: error.c =================================================================== --- error.c (revision 50120) +++ error.c (revision 50121) @@ -504,12 +504,11 @@ static const char builtin_types[][10] = https://github.com/ruby/ruby/blob/trunk/error.c#L504 "false", "Symbol", /* :symbol */ "Fixnum", - "", /* 0x16 */ + "undef", /* internal use: #undef; should not happen */ "", /* 0x17 */ "", /* 0x18 */ "", /* 0x19 */ - "", /* 0x1a */ - "undef", /* internal use: #undef; should not happen */ + "Memo", /* internal use: general memo */ "Node", /* internal use: syntax tree node */ "iClass", /* internal use: mixed-in module holder */ }; -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/