| 776 | { return obj != nullptr ? getVarType(obj->getProperty(id)) : "dangling"; } |
| 777 | |
| 778 | String DynamicObjectDebugInformation::getTextForValue() const |
| 779 | { return obj != nullptr ? getVarValue(obj->getProperty(id)) : ""; } |
| 780 | |
| 781 | const var DynamicObjectDebugInformation::getVariantCopy() const |
| 782 | { return obj != nullptr ? obj->getProperty(id) : var(); } |
no test coverage detected