| 90 | } |
| 91 | |
| 92 | QList<AbstractType::Ptr> FunctionType::arguments() const |
| 93 | { |
| 94 | ///@todo Don't do the conversion |
| 95 | QList<AbstractType::Ptr> ret; |
| 96 | ret.reserve(d_func()->m_argumentsSize()); |
| 97 | FOREACH_FUNCTION(const IndexedType &arg, d_func()->m_arguments) |
| 98 | ret << arg.abstractType(); |
| 99 | return ret; |
| 100 | } |
| 101 | |
| 102 | const IndexedType* FunctionType::indexedArguments() const |
| 103 | { |
no test coverage detected