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
|
/*
SPDX-FileCopyrightText: 2006 Hamish Rodda <rodda@kde.org>
SPDX-License-Identifier: LGPL-2.0-only
*/
#ifndef DUMPTYPES_H
#define DUMPTYPES_H
#include <language/duchain/types/typesystem.h>
#include "phpduchainexport.h"
#include <QSet>
namespace Php
{
class KDEVPHPDUCHAIN_EXPORT DumpTypes : protected KDevelop::TypeVisitor
{
public:
DumpTypes();
~DumpTypes() override;
void dump(const KDevelop::AbstractType* type);
protected:
bool preVisit(const KDevelop::AbstractType * type) override;
void postVisit(const KDevelop::AbstractType *) override;
void visit(const KDevelop::IntegralType *) override;
bool visit(const KDevelop::AbstractType *) override;
bool visit(const KDevelop::PointerType * type) override;
void endVisit(const KDevelop::PointerType *) override;
bool visit(const KDevelop::ReferenceType * type) override;
void endVisit(const KDevelop::ReferenceType *) override;
bool visit(const KDevelop::FunctionType * type) override;
void endVisit(const KDevelop::FunctionType *) override;
bool visit(const KDevelop::StructureType * type) override;
void endVisit(const KDevelop::StructureType *) override;
bool visit(const KDevelop::ArrayType * type) override;
void endVisit(const KDevelop::ArrayType *) override;
private:
bool seen(const KDevelop::AbstractType* type);
class CppEditorIntegrator* m_editor;
int indent;
QSet<const KDevelop::AbstractType*> m_encountered;
};
}
#endif // DUMPTYPES_H
|