| 314 | } |
| 315 | |
| 316 | uint32_t SLgetType(FileContent* fC, RawNodeId id) { |
| 317 | if (!fC) return 0; |
| 318 | return static_cast<uint32_t>(fC->Type(NodeId(id))); |
| 319 | } |
| 320 | |
| 321 | RawNodeId SLgetChild(FileContent* fC, RawNodeId index) { |
| 322 | if (!fC) return InvalidNodeId; |
no test coverage detected