| 102 | } |
| 103 | |
| 104 | bool ClassSpecializationType::equals(const KDevelop::AbstractType* rhs) const |
| 105 | { |
| 106 | if (this == rhs) { |
| 107 | return true; |
| 108 | } |
| 109 | |
| 110 | auto tt = dynamic_cast<const ClassSpecializationType*>(rhs); |
| 111 | if (!tt || templateParameters() != tt->templateParameters()) { |
| 112 | return false; |
| 113 | } |
| 114 | |
| 115 | return StructureType::equals(rhs); |
| 116 | } |
| 117 | |
| 118 | QVector<KDevelop::IndexedType> ClassSpecializationType::templateParameters() const |
| 119 | { |
nothing calls this directly
no test coverage detected