| 385 | } |
| 386 | |
| 387 | static pair<string, string> _annotate_form_based(pair<string, string> desc, bool suppressed) |
| 388 | { |
| 389 | if (suppressed) |
| 390 | return {_suppressedmut(desc.first, true), _suppressedmut(desc.second, false)}; |
| 391 | return {_innatemut(desc.first, true), _innatemut(desc.second, false)}; |
| 392 | } |
| 393 | |
| 394 | tileidx_t get_mutation_tile(mutation_type mut) |
| 395 | { |
no test coverage detected