2013-07-04 20:11:10 +02:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
|
|
|
|
** Contact: http://www.qt-project.org/legal
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator.
|
|
|
|
|
**
|
|
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and Digia. For licensing terms and
|
|
|
|
|
** conditions see http://qt.digia.com/licensing. For further information
|
|
|
|
|
** use the contact form at http://qt.digia.com/contact-us.
|
|
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
|
|
|
|
** General Public License version 2.1 as published by the Free Software
|
|
|
|
|
** Foundation and appearing in the file LICENSE.LGPL included in the
|
|
|
|
|
** packaging of this file. Please review the following information to
|
|
|
|
|
** ensure the GNU Lesser General Public License version 2.1 requirements
|
|
|
|
|
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
|
|
|
**
|
|
|
|
|
** In addition, as a special exception, Digia gives you certain additional
|
|
|
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
|
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "cppvirtualfunctionassistprovider.h"
|
|
|
|
|
|
|
|
|
|
#include "cppeditorconstants.h"
|
|
|
|
|
#include "cppelementevaluator.h"
|
2013-10-19 15:57:12 +02:00
|
|
|
#include "cppvirtualfunctionproposalitem.h"
|
2013-07-04 20:11:10 +02:00
|
|
|
|
|
|
|
|
#include <cplusplus/Icons.h>
|
|
|
|
|
#include <cplusplus/Overview.h>
|
|
|
|
|
|
|
|
|
|
#include <coreplugin/actionmanager/actionmanager.h>
|
|
|
|
|
#include <coreplugin/actionmanager/command.h>
|
|
|
|
|
|
2013-10-21 13:39:48 +02:00
|
|
|
#include <cpptools/symbolfinder.h>
|
|
|
|
|
|
2013-07-04 20:11:10 +02:00
|
|
|
#include <texteditor/codeassist/basicproposalitemlistmodel.h>
|
|
|
|
|
#include <texteditor/codeassist/genericproposal.h>
|
|
|
|
|
#include <texteditor/codeassist/genericproposalwidget.h>
|
|
|
|
|
#include <texteditor/codeassist/iassistinterface.h>
|
|
|
|
|
#include <texteditor/codeassist/iassistprocessor.h>
|
|
|
|
|
#include <texteditor/codeassist/iassistproposal.h>
|
|
|
|
|
|
|
|
|
|
#include <utils/qtcassert.h>
|
|
|
|
|
|
|
|
|
|
using namespace CPlusPlus;
|
|
|
|
|
using namespace CppEditor::Internal;
|
|
|
|
|
using namespace TextEditor;
|
|
|
|
|
|
|
|
|
|
/// Activate current item with the same shortcut that is configured for Follow Symbol Under Cursor.
|
|
|
|
|
/// This is limited to single-key shortcuts without modifiers.
|
|
|
|
|
class VirtualFunctionProposalWidget : public GenericProposalWidget
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
VirtualFunctionProposalWidget(bool openInSplit)
|
|
|
|
|
{
|
|
|
|
|
const char *id = openInSplit
|
|
|
|
|
? TextEditor::Constants::FOLLOW_SYMBOL_UNDER_CURSOR_IN_NEXT_SPLIT
|
|
|
|
|
: TextEditor::Constants::FOLLOW_SYMBOL_UNDER_CURSOR;
|
|
|
|
|
if (Core::Command *command = Core::ActionManager::command(id))
|
|
|
|
|
m_sequence = command->keySequence();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
bool eventFilter(QObject *o, QEvent *e)
|
|
|
|
|
{
|
|
|
|
|
if (e->type() == QEvent::ShortcutOverride && m_sequence.count() == 1) {
|
|
|
|
|
QKeyEvent *ke = static_cast<QKeyEvent *>(e);
|
|
|
|
|
const QKeySequence seq(ke->key());
|
|
|
|
|
if (seq == m_sequence) {
|
|
|
|
|
activateCurrentProposalItem();
|
|
|
|
|
e->accept();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return GenericProposalWidget::eventFilter(o, e);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
QKeySequence m_sequence;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class VirtualFunctionProposal : public GenericProposal
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
VirtualFunctionProposal(int cursorPos, IGenericProposalModel *model, bool openInSplit)
|
|
|
|
|
: GenericProposal(cursorPos, model)
|
|
|
|
|
, m_openInSplit(openInSplit)
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
bool isFragile() const
|
|
|
|
|
{ return true; }
|
|
|
|
|
|
|
|
|
|
IAssistProposalWidget *createWidget() const
|
|
|
|
|
{ return new VirtualFunctionProposalWidget(m_openInSplit); }
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
bool m_openInSplit;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class VirtualFunctionsAssistProcessor : public IAssistProcessor
|
|
|
|
|
{
|
|
|
|
|
public:
|
2013-10-23 15:14:28 +02:00
|
|
|
VirtualFunctionsAssistProcessor(const VirtualFunctionAssistProvider::Parameters ¶ms)
|
|
|
|
|
: m_params(params)
|
2013-07-04 20:11:10 +02:00
|
|
|
{}
|
|
|
|
|
|
2013-10-23 16:02:18 +02:00
|
|
|
IAssistProposal *immediateProposal(const TextEditor::IAssistInterface *)
|
2013-07-04 20:11:10 +02:00
|
|
|
{
|
2013-10-23 15:14:28 +02:00
|
|
|
QTC_ASSERT(m_params.function, return 0);
|
2013-07-04 20:11:10 +02:00
|
|
|
|
|
|
|
|
BasicProposalItem *hintItem = new VirtualFunctionProposalItem(CPPEditorWidget::Link());
|
|
|
|
|
hintItem->setText(QCoreApplication::translate("VirtualFunctionsAssistProcessor",
|
|
|
|
|
"...searching overrides"));
|
|
|
|
|
hintItem->setOrder(-1000);
|
|
|
|
|
|
|
|
|
|
QList<BasicProposalItem *> items;
|
2013-10-23 15:14:28 +02:00
|
|
|
items << itemFromSymbol(maybeDefinitionFor(m_params.function));
|
2013-07-04 20:11:10 +02:00
|
|
|
items << hintItem;
|
2013-10-23 16:02:18 +02:00
|
|
|
return new VirtualFunctionProposal(m_params.cursorPosition,
|
2013-07-04 20:11:10 +02:00
|
|
|
new BasicProposalItemListModel(items),
|
2013-10-23 15:14:28 +02:00
|
|
|
m_params.openInNextSplit);
|
2013-07-04 20:11:10 +02:00
|
|
|
}
|
|
|
|
|
|
2013-10-23 16:02:18 +02:00
|
|
|
IAssistProposal *perform(const IAssistInterface *)
|
2013-07-04 20:11:10 +02:00
|
|
|
{
|
2013-10-23 15:14:28 +02:00
|
|
|
QTC_ASSERT(m_params.startClass, return 0);
|
|
|
|
|
QTC_ASSERT(m_params.function, return 0);
|
|
|
|
|
QTC_ASSERT(!m_params.snapshot.isEmpty(), return 0);
|
2013-07-04 20:11:10 +02:00
|
|
|
|
2013-10-23 15:14:28 +02:00
|
|
|
const QList<Symbol *> overrides
|
|
|
|
|
= FunctionHelper::overrides(m_params.startClass, m_params.function, m_params.snapshot);
|
2013-10-21 13:39:48 +02:00
|
|
|
if (overrides.isEmpty())
|
|
|
|
|
return 0;
|
|
|
|
|
|
2013-07-04 20:11:10 +02:00
|
|
|
QList<BasicProposalItem *> items;
|
|
|
|
|
foreach (Symbol *symbol, overrides)
|
2013-10-21 13:39:48 +02:00
|
|
|
items << itemFromSymbol(maybeDefinitionFor(symbol));
|
|
|
|
|
items.first()->setOrder(1000); // Ensure top position for function of static type
|
2013-07-04 20:11:10 +02:00
|
|
|
|
2013-10-23 16:02:18 +02:00
|
|
|
return new VirtualFunctionProposal(m_params.cursorPosition,
|
2013-07-04 20:11:10 +02:00
|
|
|
new BasicProposalItemListModel(items),
|
2013-10-23 15:14:28 +02:00
|
|
|
m_params.openInNextSplit);
|
2013-07-04 20:11:10 +02:00
|
|
|
}
|
|
|
|
|
|
2013-10-21 13:39:48 +02:00
|
|
|
private:
|
|
|
|
|
Symbol *maybeDefinitionFor(Symbol *symbol)
|
|
|
|
|
{
|
2013-10-23 15:14:28 +02:00
|
|
|
if (Function *definition = m_finder.findMatchingDefinition(symbol, m_params.snapshot))
|
2013-10-21 13:39:48 +02:00
|
|
|
return definition;
|
|
|
|
|
return symbol;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BasicProposalItem *itemFromSymbol(Symbol *symbol) const
|
2013-07-04 20:11:10 +02:00
|
|
|
{
|
|
|
|
|
const QString text = m_overview.prettyName(LookupContext::fullyQualifiedName(symbol));
|
|
|
|
|
const CPPEditorWidget::Link link = CPPEditorWidget::linkToSymbol(symbol);
|
|
|
|
|
|
2013-10-23 15:14:28 +02:00
|
|
|
BasicProposalItem *item = new VirtualFunctionProposalItem(link, m_params.openInNextSplit);
|
2013-07-04 20:11:10 +02:00
|
|
|
item->setText(text);
|
|
|
|
|
item->setIcon(m_icons.iconForSymbol(symbol));
|
|
|
|
|
|
|
|
|
|
return item;
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-23 15:14:28 +02:00
|
|
|
VirtualFunctionAssistProvider::Parameters m_params;
|
2013-07-04 20:11:10 +02:00
|
|
|
Overview m_overview;
|
|
|
|
|
Icons m_icons;
|
2013-10-21 13:39:48 +02:00
|
|
|
CppTools::SymbolFinder m_finder;
|
2013-07-04 20:11:10 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
VirtualFunctionAssistProvider::VirtualFunctionAssistProvider()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-23 15:14:28 +02:00
|
|
|
bool VirtualFunctionAssistProvider::configure(const Parameters ¶meters)
|
2013-07-04 20:11:10 +02:00
|
|
|
{
|
2013-10-23 15:14:28 +02:00
|
|
|
m_params = parameters;
|
2013-07-04 20:11:10 +02:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool VirtualFunctionAssistProvider::isAsynchronous() const
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool VirtualFunctionAssistProvider::supportsEditor(const Core::Id &editorId) const
|
|
|
|
|
{
|
|
|
|
|
return editorId == CppEditor::Constants::CPPEDITOR_ID;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
IAssistProcessor *VirtualFunctionAssistProvider::createProcessor() const
|
|
|
|
|
{
|
2013-10-23 15:14:28 +02:00
|
|
|
return new VirtualFunctionsAssistProcessor(m_params);
|
2013-07-04 20:11:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
enum VirtualType { Virtual, PureVirtual };
|
|
|
|
|
|
2013-10-08 21:41:21 +03:00
|
|
|
static bool isVirtualFunction_helper(const Function *function,
|
|
|
|
|
const Snapshot &snapshot,
|
2013-07-04 20:11:10 +02:00
|
|
|
VirtualType virtualType)
|
|
|
|
|
{
|
|
|
|
|
if (!function)
|
|
|
|
|
return false;
|
|
|
|
|
|
2013-10-10 23:00:55 +03:00
|
|
|
if (virtualType == PureVirtual)
|
|
|
|
|
return function->isPureVirtual();
|
|
|
|
|
|
|
|
|
|
if (function->isVirtual())
|
2013-07-04 20:11:10 +02:00
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
const QString filePath = QString::fromUtf8(function->fileName(), function->fileNameLength());
|
|
|
|
|
if (Document::Ptr document = snapshot.document(filePath)) {
|
|
|
|
|
LookupContext context(document, snapshot);
|
|
|
|
|
QList<LookupItem> results = context.lookup(function->name(), function->enclosingScope());
|
|
|
|
|
if (!results.isEmpty()) {
|
|
|
|
|
foreach (const LookupItem &item, results) {
|
|
|
|
|
if (Symbol *symbol = item.declaration()) {
|
|
|
|
|
if (Function *functionType = symbol->type()->asFunctionType()) {
|
2013-10-10 23:00:55 +03:00
|
|
|
if (functionType == function) // already tested
|
|
|
|
|
continue;
|
|
|
|
|
if (functionType->isFinal())
|
|
|
|
|
return false;
|
|
|
|
|
if (functionType->isVirtual())
|
2013-07-04 20:11:10 +02:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-08 21:41:21 +03:00
|
|
|
bool FunctionHelper::isVirtualFunction(const Function *function, const Snapshot &snapshot)
|
2013-07-04 20:11:10 +02:00
|
|
|
{
|
|
|
|
|
return isVirtualFunction_helper(function, snapshot, Virtual);
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-08 21:41:21 +03:00
|
|
|
bool FunctionHelper::isPureVirtualFunction(const Function *function, const Snapshot &snapshot)
|
2013-07-04 20:11:10 +02:00
|
|
|
{
|
|
|
|
|
return isVirtualFunction_helper(function, snapshot, PureVirtual);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QList<Symbol *> FunctionHelper::overrides(Class *startClass, Function *function,
|
2013-10-08 09:17:41 +02:00
|
|
|
const Snapshot &snapshot)
|
2013-07-04 20:11:10 +02:00
|
|
|
{
|
|
|
|
|
QList<Symbol *> result;
|
2013-10-08 09:17:41 +02:00
|
|
|
QTC_ASSERT(startClass && function, return result);
|
2013-07-04 20:11:10 +02:00
|
|
|
|
|
|
|
|
FullySpecifiedType referenceType = function->type();
|
|
|
|
|
const Name *referenceName = function->name();
|
2013-10-08 09:17:41 +02:00
|
|
|
QTC_ASSERT(referenceName && referenceType.isValid(), return result);
|
2013-07-04 20:11:10 +02:00
|
|
|
|
|
|
|
|
// Find overrides
|
|
|
|
|
CppEditor::Internal::CppClass cppClass = CppClass(startClass);
|
|
|
|
|
cppClass.lookupDerived(startClass, snapshot);
|
|
|
|
|
|
|
|
|
|
QList<CppClass> l;
|
|
|
|
|
l << cppClass;
|
|
|
|
|
|
|
|
|
|
while (!l.isEmpty()) {
|
|
|
|
|
// Add derived
|
|
|
|
|
CppClass clazz = l.takeFirst();
|
|
|
|
|
foreach (const CppClass &d, clazz.derived) {
|
|
|
|
|
if (!l.contains(d))
|
|
|
|
|
l << d;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Check member functions
|
|
|
|
|
QTC_ASSERT(clazz.declaration, continue);
|
|
|
|
|
Class *c = clazz.declaration->asClass();
|
|
|
|
|
QTC_ASSERT(c, continue);
|
|
|
|
|
for (int i = 0, total = c->memberCount(); i < total; ++i) {
|
|
|
|
|
Symbol *candidate = c->memberAt(i);
|
|
|
|
|
const Name *candidateName = candidate->name();
|
2013-10-08 09:17:41 +02:00
|
|
|
const FullySpecifiedType candidateType = candidate->type();
|
|
|
|
|
if (!candidateName || !candidateType.isValid())
|
|
|
|
|
continue;
|
2013-07-04 20:11:10 +02:00
|
|
|
if (candidateName->isEqualTo(referenceName) && candidateType.isEqualTo(referenceType))
|
|
|
|
|
result << candidate;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
2013-10-10 23:00:55 +03:00
|
|
|
|
|
|
|
|
#ifdef WITH_TESTS
|
|
|
|
|
#include "cppeditorplugin.h"
|
|
|
|
|
|
|
|
|
|
#include <QList>
|
|
|
|
|
#include <QTest>
|
|
|
|
|
|
|
|
|
|
namespace CppEditor {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
enum Virtuality
|
|
|
|
|
{
|
|
|
|
|
NotVirtual,
|
|
|
|
|
Virtual,
|
|
|
|
|
PureVirtual
|
|
|
|
|
};
|
|
|
|
|
typedef QList<Virtuality> VirtualityList;
|
2013-10-15 13:11:11 +02:00
|
|
|
} // Internal namespace
|
|
|
|
|
} // CppEditor namespace
|
|
|
|
|
|
|
|
|
|
Q_DECLARE_METATYPE(CppEditor::Internal::Virtuality)
|
|
|
|
|
Q_DECLARE_METATYPE(CppEditor::Internal::VirtualityList)
|
|
|
|
|
|
|
|
|
|
namespace CppEditor {
|
|
|
|
|
namespace Internal {
|
2013-10-10 23:00:55 +03:00
|
|
|
|
|
|
|
|
void CppEditorPlugin::test_functionhelper_virtualFunctions()
|
|
|
|
|
{
|
|
|
|
|
// Create and parse document
|
|
|
|
|
QFETCH(QByteArray, source);
|
|
|
|
|
QFETCH(VirtualityList, virtualityList);
|
|
|
|
|
Document::Ptr document = Document::create(QLatin1String("virtuals"));
|
|
|
|
|
document->setUtf8Source(source);
|
|
|
|
|
document->check(); // calls parse();
|
|
|
|
|
QCOMPARE(document->diagnosticMessages().size(), 0);
|
|
|
|
|
QVERIFY(document->translationUnit()->ast());
|
|
|
|
|
|
|
|
|
|
// Iterate through Function symbols
|
|
|
|
|
Snapshot snapshot;
|
|
|
|
|
snapshot.insert(document);
|
|
|
|
|
Control *control = document->translationUnit()->control();
|
|
|
|
|
Symbol **end = control->lastSymbol();
|
|
|
|
|
for (Symbol **it = control->firstSymbol(); it != end; ++it) {
|
|
|
|
|
const CPlusPlus::Symbol *symbol = *it;
|
|
|
|
|
if (const Function *function = symbol->asFunction()) {
|
|
|
|
|
QTC_ASSERT(!virtualityList.isEmpty(), return);
|
|
|
|
|
Virtuality virtuality = virtualityList.takeFirst();
|
|
|
|
|
if (FunctionHelper::isVirtualFunction(function, snapshot)) {
|
|
|
|
|
if (FunctionHelper::isPureVirtualFunction(function, snapshot))
|
|
|
|
|
QCOMPARE(virtuality, PureVirtual);
|
|
|
|
|
else
|
|
|
|
|
QCOMPARE(virtuality, Virtual);
|
|
|
|
|
} else {
|
|
|
|
|
QCOMPARE(virtuality, NotVirtual);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
QVERIFY(virtualityList.isEmpty());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CppEditorPlugin::test_functionhelper_virtualFunctions_data()
|
|
|
|
|
{
|
|
|
|
|
typedef QByteArray _;
|
|
|
|
|
QTest::addColumn<QByteArray>("source");
|
|
|
|
|
QTest::addColumn<VirtualityList>("virtualityList");
|
|
|
|
|
|
|
|
|
|
QTest::newRow("none")
|
|
|
|
|
<< _("struct None { void foo() {} };\n")
|
|
|
|
|
<< (VirtualityList() << NotVirtual);
|
|
|
|
|
|
|
|
|
|
QTest::newRow("single-virtual")
|
|
|
|
|
<< _("struct V { virtual void foo() {} };\n")
|
|
|
|
|
<< (VirtualityList() << Virtual);
|
|
|
|
|
|
|
|
|
|
QTest::newRow("single-pure-virtual")
|
|
|
|
|
<< _("struct PV { virtual void foo() = 0; };\n")
|
|
|
|
|
<< (VirtualityList() << PureVirtual);
|
|
|
|
|
|
|
|
|
|
QTest::newRow("virtual-derived-with-specifier")
|
|
|
|
|
<< _("struct Base { virtual void foo() {} };\n"
|
|
|
|
|
"struct Derived : Base { virtual void foo() {} };\n")
|
|
|
|
|
<< (VirtualityList() << Virtual << Virtual);
|
|
|
|
|
|
|
|
|
|
QTest::newRow("virtual-derived-implicit")
|
|
|
|
|
<< _("struct Base { virtual void foo() {} };\n"
|
|
|
|
|
"struct Derived : Base { void foo() {} };\n")
|
|
|
|
|
<< (VirtualityList() << Virtual << Virtual);
|
|
|
|
|
|
|
|
|
|
QTest::newRow("not-virtual-then-virtual")
|
|
|
|
|
<< _("struct Base { void foo() {} };\n"
|
|
|
|
|
"struct Derived : Base { virtual void foo() {} };\n")
|
|
|
|
|
<< (VirtualityList() << NotVirtual << Virtual);
|
|
|
|
|
|
|
|
|
|
QTest::newRow("virtual-final-not-virtual")
|
|
|
|
|
<< _("struct Base { virtual void foo() {} };\n"
|
|
|
|
|
"struct Derived : Base { void foo() final {} };\n"
|
|
|
|
|
"struct Derived2 : Derived { void foo() {} };")
|
|
|
|
|
<< (VirtualityList() << Virtual << Virtual << NotVirtual);
|
|
|
|
|
|
|
|
|
|
QTest::newRow("virtual-then-pure")
|
|
|
|
|
<< _("struct Base { virtual void foo() {} };\n"
|
|
|
|
|
"struct Derived : Base { virtual void foo() = 0; };\n"
|
|
|
|
|
"struct Derived2 : Derived { void foo() {} };")
|
|
|
|
|
<< (VirtualityList() << Virtual << PureVirtual << Virtual);
|
|
|
|
|
|
|
|
|
|
QTest::newRow("virtual-virtual-final-not-virtual")
|
|
|
|
|
<< _("struct Base { virtual void foo() {} };\n"
|
|
|
|
|
"struct Derived : Base { virtual void foo() final {} };\n"
|
|
|
|
|
"struct Derived2 : Derived { void foo() {} };")
|
|
|
|
|
<< (VirtualityList() << Virtual << Virtual << NotVirtual);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace CppEditor
|
|
|
|
|
|
|
|
|
|
#endif
|