| 90 | } |
| 91 | |
| 92 | void ArrayType::exchangeTypes(TypeExchanger* exchanger) |
| 93 | { |
| 94 | TYPE_D_DYNAMIC(ArrayType); |
| 95 | d->m_elementType = IndexedType(exchanger->exchange(d->m_elementType.abstractType())); |
| 96 | } |
| 97 | |
| 98 | AbstractType::WhichType ArrayType::whichType() const |
| 99 | { |
no test coverage detected