Like so:
bool var::hasProperty (const Identifier propertyName)
{
if (DynamicObject* const o = getDynamicObject())
return o->hasProperty (propertyName);
return false;
}
Like so:
bool var::hasProperty (const Identifier propertyName)
{
if (DynamicObject* const o = getDynamicObject())
return o->hasProperty (propertyName);
return false;
}
Sounds like a good request, I’ll throw that in there…