| 91 | } |
| 92 | |
| 93 | AbstractType::Ptr resolveAliasType(const AbstractType::Ptr& eventualAlias) |
| 94 | { |
| 95 | if (eventualAlias && eventualAlias->whichType() == KDevelop::AbstractType::TypeAlias) { |
| 96 | return eventualAlias.staticCast<TypeAliasType>()->type(); |
| 97 | } |
| 98 | return eventualAlias; |
| 99 | } |
| 100 | |
| 101 | bool isUsefulType(AbstractType::Ptr type) |
| 102 | { |
no test coverage detected