| 559 | } |
| 560 | |
| 561 | uint32_t SLgetPackageLine(Package* module) { |
| 562 | if (!ModuleHasFirstFileContent(module)) return 0; |
| 563 | return module->getFileContents()[0]->Line(module->getNodeIds()[0]); |
| 564 | } |
| 565 | |
| 566 | VObjectType SLgetPackageType(Package* module) { |
| 567 | if (!module) return VObjectType::slNoType; |
nothing calls this directly
no test coverage detected