Updated builtin type names

Fixnum and Bignum have been unified to Integer already.
This commit is contained in:
Nobuyoshi Nakada 2020-06-16 00:26:17 +09:00
parent 7a571103f2
commit e384707296
No known key found for this signature in database
GPG Key ID: 7CD2805BFA3770C6

View File

@ -753,7 +753,7 @@ static const char builtin_types[][10] = {
"Array", "Array",
"Hash", "Hash",
"Struct", "Struct",
"Bignum", "Integer",
"File", "File",
"Data", /* internal use: wrapped C pointers */ "Data", /* internal use: wrapped C pointers */
"MatchData", /* data of $~ */ "MatchData", /* data of $~ */
@ -764,7 +764,7 @@ static const char builtin_types[][10] = {
"true", "true",
"false", "false",
"Symbol", /* :symbol */ "Symbol", /* :symbol */
"Fixnum", "Integer",
"undef", /* internal use: #undef; should not happen */ "undef", /* internal use: #undef; should not happen */
"", /* 0x17 */ "", /* 0x17 */
"", /* 0x18 */ "", /* 0x18 */