1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
/*
SPDX-FileCopyrightText: 2008 Milian Wolff <mail@milianw.de>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#include "functiondeclaration.h"
#include <language/duchain/duchainregister.h>
#include <language/duchain/types/functiontype.h>
namespace Php {
REGISTER_DUCHAIN_ITEM(FunctionDeclaration);
FunctionDeclaration::FunctionDeclaration(const FunctionDeclaration& rhs)
: KDevelop::FunctionDeclaration(*new FunctionDeclarationData(*rhs.d_func()))
{
}
FunctionDeclaration::FunctionDeclaration(const KDevelop::RangeInRevision& range, KDevelop::DUContext* context)
: KDevelop::FunctionDeclaration(*new FunctionDeclarationData, range)
{
d_func_dynamic()->setClassId(this);
if (context) {
setContext(context);
}
}
FunctionDeclaration::FunctionDeclaration(FunctionDeclarationData& data)
: KDevelop::FunctionDeclaration(data)
{
}
FunctionDeclaration::FunctionDeclaration(FunctionDeclarationData& data, const KDevelop::RangeInRevision& range, KDevelop::DUContext* context)
: KDevelop::FunctionDeclaration(data, range)
{
if (context) {
setContext(context);
}
}
FunctionDeclaration::~FunctionDeclaration()
{
}
KDevelop::Declaration* FunctionDeclaration::clonePrivate() const
{
return new FunctionDeclaration(*this);
}
KDevelop::IndexedString FunctionDeclaration::prettyName() const
{
return d_func()->prettyName;
}
void FunctionDeclaration::setPrettyName( const KDevelop::IndexedString& name )
{
d_func_dynamic()->prettyName = name;
}
QString FunctionDeclaration::toString() const
{
if( !abstractType() )
return Declaration::toString();
KDevelop::TypePtr<KDevelop::FunctionType> function = type<KDevelop::FunctionType>();
Q_ASSERT(function);
return QStringLiteral("%1 %2 %3").arg(function->partToString( KDevelop::FunctionType::SignatureReturn ),
prettyName().str(),
function->partToString( KDevelop::FunctionType::SignatureArguments ));
}
}
|