| 553 | } |
| 554 | |
| 555 | std::string SLgetPackageFile(Package* module) { |
| 556 | if (!ModuleHasFirstFileContent(module)) return ""; |
| 557 | return std::string(FileSystem::getInstance()->toPath( |
| 558 | module->getFileContents()[0]->getFileId(module->getNodeIds()[0]))); |
| 559 | } |
| 560 | |
| 561 | uint32_t SLgetPackageLine(Package* module) { |
| 562 | if (!ModuleHasFirstFileContent(module)) return 0; |
nothing calls this directly
no test coverage detected