| 139 | QStringList types; |
| 140 | types.reserve(d->m_argumentsSize()); |
| 141 | FOREACH_FUNCTION(const IndexedType &type, d->m_arguments) { |
| 142 | types.append(type ? type.abstractType()->toString() : QStringLiteral("<notype>")); |
| 143 | } |
| 144 | args += QLatin1Char('(') + types.join(QLatin1String(", ")) + QLatin1Char(')'); |
| 145 | } |
| 146 |
nothing calls this directly
no test coverage detected