MCPcopy Create free account
hub / github.com/KDE/kdevelop / arguments

Method arguments

kdevplatform/language/duchain/types/functiontype.cpp:92–100  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

90}
91
92QList<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
102const IndexedType* FunctionType::indexedArguments() const
103{

Callers 2

htmlFunctionMethod · 0.45

Calls 2

reserveMethod · 0.45
abstractTypeMethod · 0.45

Tested by

no test coverage detected