don't crash on unknown types

This commit is contained in:
Wolfgang Thaller 2014-10-30 03:05:02 +01:00
parent 2e6fe30d61
commit afab2466dc
1 changed files with 4 additions and 1 deletions

View File

@ -13,6 +13,8 @@ RezWorld::RezWorld()
void RezWorld::addTypeDefinition(TypeSpec spec, TypeDefinitionPtr type)
{
if(!type)
return;
types[spec] = type;
}
@ -34,7 +36,8 @@ void RezWorld::addResource(ResSpec spec, CompoundExprPtr body, yy::location loc)
if(verboseFlag)
std::cout << "RESOURCE " << spec.type() << "(" << spec.id() << ", " << "\"" << spec.name() << "\"" << spec.attr() << ")" << std::endl;
TypeDefinitionPtr def = getTypeDefinition(spec.type(), spec.id(), loc);
if(!def)
return;
ResourceCompiler compiler(*this, def, body, verboseFlag);
compiler.compile();