| 590 | } |
| 591 | |
| 592 | uint32_t SLgetProgramLine(Program* module) { |
| 593 | if (!ModuleHasFirstFileContent(module)) return 0; |
| 594 | return module->getFileContents()[0]->Line(module->getNodeIds()[0]); |
| 595 | } |
| 596 | |
| 597 | VObjectType SLgetProgramType(Program* module) { |
| 598 | if (!module) return VObjectType::slNoType; |
nothing calls this directly
no test coverage detected