| 569 | } |
| 570 | |
| 571 | FileContent* SLgetPackageFileContent(Package* module) { |
| 572 | if (!ModuleHasFirstFileContent(module)) return nullptr; |
| 573 | return const_cast<FileContent*>(module->getFileContents()[0]); |
| 574 | } |
| 575 | |
| 576 | RawNodeId SLgetPackageRootNode(Package* module) { |
| 577 | if (!module || module->getNodeIds().empty()) return InvalidNodeId; |
nothing calls this directly
no test coverage detected