| 625 | } |
| 626 | |
| 627 | std::string SLgetInstanceFullPathName(ModuleInstance* instance) { |
| 628 | if (!instance) return ""; |
| 629 | return instance->getFullPathName(); |
| 630 | } |
| 631 | |
| 632 | std::string SLgetInstanceModuleName(ModuleInstance* instance) { |
| 633 | if (!instance) return ""; |
nothing calls this directly
no test coverage detected