| 782 | { return obj != nullptr ? obj->getProperty(id) : var(); } |
| 783 | |
| 784 | DebugableObjectBase* DynamicObjectDebugInformation::getObject() |
| 785 | { |
| 786 | auto v = getVariantCopy(); |
| 787 | |
| 788 | if (auto dyn = v.getDynamicObject()) |
| 789 | { |
| 790 | wrapper = new DynamicDebugableObjectWrapper(dyn, id, id); |
| 791 | return wrapper.get(); |
| 792 | } |
| 793 | |
| 794 | return nullptr; |
| 795 | } |
| 796 | |
| 797 | DebugInformationBase::Ptr DebugableObject::Helpers::getDebugInformation(ApiProviderBase* engine, DebugableObjectBase* object) |
| 798 | { |
no test coverage detected