| 78 | } |
| 79 | |
| 80 | std::vector<ScriptCatalog::Entry> ScriptCatalog::scan(const std::vector<Root>& universalRoots, const std::vector<Root>& specificRoots) |
| 81 | { |
| 82 | std::vector<Entry> entries; |
| 83 | scanSection(universalRoots, true, entries); |
| 84 | if (!specificRoots.empty()) { |
| 85 | scanSection(specificRoots, false, entries); |
| 86 | } |
| 87 | return entries; |
| 88 | } |
no test coverage detected