| 123 | } |
| 124 | |
| 125 | void FunctionType::exchangeTypes(TypeExchanger* exchanger) |
| 126 | { |
| 127 | TYPE_D_DYNAMIC(FunctionType); |
| 128 | for (uint i = 0; i < d->m_argumentsSize(); ++i) |
| 129 | d->m_argumentsList()[i] = IndexedType(exchanger->exchange(d->m_arguments()[i].abstractType())); |
| 130 | |
| 131 | d->m_returnType = IndexedType(exchanger->exchange(d->m_returnType.abstractType())); |
| 132 | } |
| 133 | |
| 134 | QString FunctionType::partToString(SignaturePart sigPart) const |
| 135 | { |
nothing calls this directly
no test coverage detected