2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
2010-07-16 11:03:39 +02:00
|
|
|
|
2016-03-18 07:55:01 +01:00
|
|
|
#pragma once
|
2010-07-16 11:03:39 +02:00
|
|
|
|
|
|
|
|
#include "CppDocument.h"
|
|
|
|
|
#include "LookupContext.h"
|
|
|
|
|
|
|
|
|
|
namespace CPlusPlus {
|
|
|
|
|
|
|
|
|
|
class Rewrite;
|
|
|
|
|
|
|
|
|
|
class CPLUSPLUS_EXPORT Substitution
|
|
|
|
|
{
|
|
|
|
|
Q_DISABLE_COPY(Substitution)
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
Substitution() {}
|
|
|
|
|
virtual ~Substitution() {}
|
|
|
|
|
|
|
|
|
|
virtual FullySpecifiedType apply(const Name *name, Rewrite *rewrite) const = 0;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class CPLUSPLUS_EXPORT SubstitutionEnvironment
|
|
|
|
|
{
|
2010-07-19 19:24:31 +02:00
|
|
|
Q_DISABLE_COPY(SubstitutionEnvironment)
|
2010-07-16 11:03:39 +02:00
|
|
|
|
|
|
|
|
public:
|
2010-07-20 15:04:50 +02:00
|
|
|
SubstitutionEnvironment();
|
2010-07-19 20:12:16 +02:00
|
|
|
|
2010-07-20 15:04:50 +02:00
|
|
|
FullySpecifiedType apply(const Name *name, Rewrite *rewrite) const;
|
2010-07-19 20:12:16 +02:00
|
|
|
|
2010-07-20 15:04:50 +02:00
|
|
|
void enter(Substitution *subst);
|
|
|
|
|
void leave();
|
|
|
|
|
|
|
|
|
|
Scope *scope() const;
|
|
|
|
|
Scope *switchScope(Scope *scope);
|
|
|
|
|
|
|
|
|
|
const LookupContext &context() const;
|
|
|
|
|
void setContext(const LookupContext &context);
|
2010-07-16 11:03:39 +02:00
|
|
|
|
|
|
|
|
private:
|
2010-07-20 15:04:50 +02:00
|
|
|
QList<Substitution *> _substs;
|
2010-07-20 14:23:46 +02:00
|
|
|
Scope *_scope;
|
2010-07-20 15:04:50 +02:00
|
|
|
LookupContext _context;
|
2010-07-16 11:03:39 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class CPLUSPLUS_EXPORT SubstitutionMap: public Substitution
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
SubstitutionMap();
|
|
|
|
|
virtual ~SubstitutionMap();
|
|
|
|
|
|
|
|
|
|
void bind(const Name *name, const FullySpecifiedType &ty);
|
|
|
|
|
virtual FullySpecifiedType apply(const Name *name, Rewrite *rewrite) const;
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
QList<QPair<const Name *, FullySpecifiedType> > _map;
|
|
|
|
|
};
|
|
|
|
|
|
2011-07-28 21:17:28 +02:00
|
|
|
class CPLUSPLUS_EXPORT UseMinimalNames: public Substitution
|
2010-07-20 15:04:50 +02:00
|
|
|
{
|
|
|
|
|
public:
|
2015-11-19 13:49:26 +01:00
|
|
|
UseMinimalNames(ClassOrNamespace *target);
|
2011-07-28 21:17:28 +02:00
|
|
|
virtual ~UseMinimalNames();
|
2010-07-20 15:04:50 +02:00
|
|
|
|
|
|
|
|
virtual FullySpecifiedType apply(const Name *name, Rewrite *rewrite) const;
|
2011-07-28 21:17:28 +02:00
|
|
|
|
|
|
|
|
private:
|
2015-11-19 13:49:26 +01:00
|
|
|
ClassOrNamespace *_target;
|
2010-07-20 15:04:50 +02:00
|
|
|
};
|
|
|
|
|
|
2011-07-28 21:17:28 +02:00
|
|
|
class CPLUSPLUS_EXPORT UseQualifiedNames: public UseMinimalNames
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
UseQualifiedNames();
|
|
|
|
|
virtual ~UseQualifiedNames();
|
|
|
|
|
};
|
2010-07-20 15:04:50 +02:00
|
|
|
|
|
|
|
|
|
2010-07-16 11:03:39 +02:00
|
|
|
CPLUSPLUS_EXPORT FullySpecifiedType rewriteType(const FullySpecifiedType &type,
|
2010-07-19 19:24:31 +02:00
|
|
|
SubstitutionEnvironment *env,
|
2010-07-16 11:03:39 +02:00
|
|
|
Control *control);
|
|
|
|
|
|
|
|
|
|
CPLUSPLUS_EXPORT const Name *rewriteName(const Name *name,
|
2010-07-19 19:24:31 +02:00
|
|
|
SubstitutionEnvironment *env,
|
2010-07-16 11:03:39 +02:00
|
|
|
Control *control);
|
|
|
|
|
|
2011-02-04 09:52:39 +01:00
|
|
|
} // namespace CPlusPlus
|