| 339 | } |
| 340 | |
| 341 | std::string SLgetName(FileContent* fC, RawNodeId index) { |
| 342 | if (!fC) return ""; |
| 343 | return std::string(fC->SymName(NodeId(index))); |
| 344 | } |
| 345 | |
| 346 | RawNodeId SLgetChild(FileContent* fC, RawNodeId parent, uint32_t type) { |
| 347 | if (!fC) return InvalidNodeId; |
no test coverage detected