| 161 | } |
| 162 | |
| 163 | void DumpPrefixes(string const & fPath) |
| 164 | { |
| 165 | PrefixesCollector doClass; |
| 166 | feature::ForEachFeature(fPath, doClass); |
| 167 | for (auto const & [langCode, container] : doClass.m_stats) |
| 168 | Print(langCode, container); |
| 169 | } |
| 170 | |
| 171 | void DumpSearchTokens(string const & fPath, size_t maxTokensToShow) |
| 172 | { |
no test coverage detected