| 382 | } |
| 383 | |
| 384 | std::vector<RawNodeId> SLcollectAll(FileContent* fC, RawNodeId parent, |
| 385 | uint32_t type, bool first) { |
| 386 | if (fC) |
| 387 | return transform( |
| 388 | fC->sl_collect_all(NodeId(parent), (VObjectType)type, first)); |
| 389 | else |
| 390 | return {}; |
| 391 | } |
| 392 | |
| 393 | std::vector<RawNodeId> SLcollectAll(FileContent* fC, RawNodeId parent, |
| 394 | const std::vector<uint32_t>& types, |
no test coverage detected