| 489 | } |
| 490 | |
| 491 | std::string SLgetModuleFile(ModuleDefinition* module) { |
| 492 | if (!ModuleHasFirstFileContent(module)) return ""; |
| 493 | return std::string(FileSystem::getInstance()->toPath( |
| 494 | module->getFileContents()[0]->getFileId(module->getNodeIds()[0]))); |
| 495 | } |
| 496 | |
| 497 | uint32_t SLgetModuleLine(ModuleDefinition* module) { |
| 498 | if (!ModuleHasFirstFileContent(module)) return 0; |
no test coverage detected