| 81 | } |
| 82 | |
| 83 | void ArrayType::accept0(TypeVisitor* v) const |
| 84 | { |
| 85 | if (v->visit(this)) { |
| 86 | acceptType(d_func()->m_elementType.abstractType(), v); |
| 87 | } |
| 88 | |
| 89 | v->endVisit(this); |
| 90 | } |
| 91 | |
| 92 | void ArrayType::exchangeTypes(TypeExchanger* exchanger) |
| 93 | { |
no test coverage detected