| 584 | } |
| 585 | |
| 586 | std::string SLgetProgramFile(Program* module) { |
| 587 | if (!ModuleHasFirstFileContent(module)) return ""; |
| 588 | return std::string(FileSystem::getInstance()->toPath( |
| 589 | module->getFileContents()[0]->getFileId(module->getNodeIds()[0]))); |
| 590 | } |
| 591 | |
| 592 | uint32_t SLgetProgramLine(Program* module) { |
| 593 | if (!ModuleHasFirstFileContent(module)) return 0; |
nothing calls this directly
no test coverage detected