| 516 | } |
| 517 | |
| 518 | std::string SLgetClassName(ClassDefinition* module) { |
| 519 | if (!module) return ""; |
| 520 | return std::string(module->getName()); |
| 521 | } |
| 522 | |
| 523 | std::string SLgetClassFile(ClassDefinition* module) { |
| 524 | if (!ModuleHasFirstFileContent(module)) return ""; |
no test coverage detected