| 640 | } |
| 641 | |
| 642 | std::string SLgetInstanceFileName(ModuleInstance* instance) { |
| 643 | if (!instance) return ""; |
| 644 | return std::string(FileSystem::getInstance()->toPath( |
| 645 | instance->getFileContent()->getFileId(instance->getNodeId()))); |
| 646 | } |
| 647 | |
| 648 | FileContent* SLgetInstanceFileContent(ModuleInstance* instance) { |
| 649 | if (!instance) return nullptr; |
no test coverage detected