| 600 | } |
| 601 | |
| 602 | FileContent* SLgetProgramFileContent(Program* module) { |
| 603 | if (!ModuleHasFirstFileContent(module)) return nullptr; |
| 604 | return const_cast<FileContent*>(module->getFileContents()[0]); |
| 605 | } |
| 606 | |
| 607 | RawNodeId SLgetProgramRootNode(Program* module) { |
| 608 | if (!module || module->getNodeIds().empty()) return InvalidNodeId; |
nothing calls this directly
no test coverage detected