| 620 | } |
| 621 | |
| 622 | std::string SLgetInstanceName(ModuleInstance* instance) { |
| 623 | if (!instance) return ""; |
| 624 | return instance->getInstanceName(); |
| 625 | } |
| 626 | |
| 627 | std::string SLgetInstanceFullPathName(ModuleInstance* instance) { |
| 628 | if (!instance) return ""; |
no test coverage detected