| 67 | } |
| 68 | |
| 69 | QString ListType::toString() const |
| 70 | { |
| 71 | QString prefix = KDevelop::StructureType::toString(); |
| 72 | auto content = contentType().abstractType(); |
| 73 | if (content) { |
| 74 | return i18n("%1 of %2", prefix, content->toString()); |
| 75 | } |
| 76 | return prefix; |
| 77 | } |
| 78 | |
| 79 | QString MapType::toString() const |
| 80 | { |
nothing calls this directly
no test coverage detected