Fix incorrect field type for the Type.base field

refs #9076
This commit is contained in:
Gunnar Beutner 2015-08-26 11:00:05 +02:00
parent 06f02f8b10
commit 3ea71e82c5
1 changed files with 1 additions and 1 deletions

View File

@ -165,7 +165,7 @@ Field TypeType::GetFieldInfo(int id) const
if (id == 0)
return Field(0, "Object", "prototype", NULL, 0, 0);
else if (id == 1)
return Field(1, "Object", "base", NULL, 0, 0);
return Field(1, "Type", "base", NULL, 0, 0);
throw std::runtime_error("Invalid field ID.");
}