| 495 | } |
| 496 | |
| 497 | uint32_t SLgetModuleLine(ModuleDefinition* module) { |
| 498 | if (!ModuleHasFirstFileContent(module)) return 0; |
| 499 | return module->getFileContents()[0]->Line(module->getNodeIds()[0]); |
| 500 | } |
| 501 | |
| 502 | VObjectType SLgetModuleType(ModuleDefinition* module) { |
| 503 | if (!module) return VObjectType::slNoType; |
no test coverage detected