| 630 | } |
| 631 | |
| 632 | std::string SLgetInstanceModuleName(ModuleInstance* instance) { |
| 633 | if (!instance) return ""; |
| 634 | return std::string(instance->getModuleName()); |
| 635 | } |
| 636 | |
| 637 | DesignComponent* SLgetInstanceDefinition(ModuleInstance* instance) { |
| 638 | if (!instance) return nullptr; |
nothing calls this directly
no test coverage detected