| 615 | } |
| 616 | |
| 617 | VObjectType SLgetInstanceModuleType(ModuleInstance* instance) { |
| 618 | if (!instance) return VObjectType::slNoType; |
| 619 | return instance->getModuleType(); |
| 620 | } |
| 621 | |
| 622 | std::string SLgetInstanceName(ModuleInstance* instance) { |
| 623 | if (!instance) return ""; |
nothing calls this directly
no test coverage detected