2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2010-07-16 11:03:39 +02:00
|
|
|
**
|
2014-01-07 13:27:11 +01:00
|
|
|
** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
|
2012-10-02 09:12:39 +02:00
|
|
|
** Contact: http://www.qt-project.org/legal
|
2010-07-16 11:03:39 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2010-07-16 11:03:39 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** 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.
|
2010-07-16 11:03:39 +02:00
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
2012-10-02 09:12:39 +02:00
|
|
|
** 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
|
2010-12-17 16:01:08 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2013-03-27 18:54:03 +01:00
|
|
|
|
2010-07-16 11:03:39 +02:00
|
|
|
#include "CppRewriter.h"
|
2013-03-27 18:54:03 +01:00
|
|
|
|
|
|
|
|
#include "Overview.h"
|
|
|
|
|
|
|
|
|
|
#include <cplusplus/TypeVisitor.h>
|
|
|
|
|
#include <cplusplus/NameVisitor.h>
|
|
|
|
|
#include <cplusplus/CoreTypes.h>
|
|
|
|
|
#include <cplusplus/Symbols.h>
|
|
|
|
|
#include <cplusplus/Literals.h>
|
|
|
|
|
#include <cplusplus/Names.h>
|
|
|
|
|
#include <cplusplus/Scope.h>
|
2010-07-16 11:03:39 +02:00
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QVarLengthArray>
|
|
|
|
|
#include <QDebug>
|
2010-07-16 11:03:39 +02:00
|
|
|
|
2010-11-25 13:51:54 +01:00
|
|
|
namespace CPlusPlus {
|
2010-07-16 11:03:39 +02:00
|
|
|
|
2010-11-25 13:51:54 +01:00
|
|
|
class Rewrite
|
2010-07-16 11:03:39 +02:00
|
|
|
{
|
|
|
|
|
public:
|
2010-07-19 19:24:31 +02:00
|
|
|
Rewrite(Control *control, SubstitutionEnvironment *env)
|
2010-07-16 11:03:39 +02:00
|
|
|
: control(control), env(env), rewriteType(this), rewriteName(this) {}
|
|
|
|
|
|
|
|
|
|
class RewriteType: public TypeVisitor
|
|
|
|
|
{
|
|
|
|
|
Rewrite *rewrite;
|
|
|
|
|
QList<FullySpecifiedType> temps;
|
|
|
|
|
|
|
|
|
|
Control *control() const
|
|
|
|
|
{ return rewrite->control; }
|
|
|
|
|
|
|
|
|
|
void accept(const FullySpecifiedType &ty)
|
|
|
|
|
{
|
|
|
|
|
TypeVisitor::accept(ty.type());
|
|
|
|
|
unsigned flags = ty.flags();
|
|
|
|
|
flags |= temps.back().flags();
|
|
|
|
|
temps.back().setFlags(flags);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
RewriteType(Rewrite *r): rewrite(r) {}
|
|
|
|
|
|
|
|
|
|
FullySpecifiedType operator()(const FullySpecifiedType &ty)
|
|
|
|
|
{
|
|
|
|
|
accept(ty);
|
|
|
|
|
return temps.takeLast();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
virtual void visit(UndefinedType *)
|
|
|
|
|
{
|
|
|
|
|
temps.append(FullySpecifiedType());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
virtual void visit(VoidType *)
|
|
|
|
|
{
|
|
|
|
|
temps.append(control()->voidType());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
virtual void visit(IntegerType *type)
|
|
|
|
|
{
|
|
|
|
|
temps.append(control()->integerType(type->kind()));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
virtual void visit(FloatType *type)
|
|
|
|
|
{
|
|
|
|
|
temps.append(control()->floatType(type->kind()));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
virtual void visit(PointerToMemberType *type)
|
|
|
|
|
{
|
|
|
|
|
const Name *memberName = rewrite->rewriteName(type->memberName());
|
|
|
|
|
const FullySpecifiedType elementType = rewrite->rewriteType(type->elementType());
|
|
|
|
|
temps.append(control()->pointerToMemberType(memberName, elementType));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
virtual void visit(PointerType *type)
|
|
|
|
|
{
|
|
|
|
|
const FullySpecifiedType elementType = rewrite->rewriteType(type->elementType());
|
|
|
|
|
temps.append(control()->pointerType(elementType));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
virtual void visit(ReferenceType *type)
|
|
|
|
|
{
|
|
|
|
|
const FullySpecifiedType elementType = rewrite->rewriteType(type->elementType());
|
2013-11-26 17:16:13 +01:00
|
|
|
temps.append(control()->referenceType(elementType, type->isRvalueReference()));
|
2010-07-16 11:03:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
virtual void visit(ArrayType *type)
|
|
|
|
|
{
|
|
|
|
|
const FullySpecifiedType elementType = rewrite->rewriteType(type->elementType());
|
|
|
|
|
temps.append(control()->arrayType(elementType, type->size()));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
virtual void visit(NamedType *type)
|
|
|
|
|
{
|
2010-07-19 19:24:31 +02:00
|
|
|
FullySpecifiedType ty = rewrite->env->apply(type->name(), rewrite);
|
2013-07-17 00:01:45 +03:00
|
|
|
if (! ty->isUndefinedType()) {
|
2010-07-20 15:04:50 +02:00
|
|
|
temps.append(ty);
|
2013-07-17 00:01:45 +03:00
|
|
|
} else {
|
2010-07-16 11:03:39 +02:00
|
|
|
const Name *name = rewrite->rewriteName(type->name());
|
|
|
|
|
temps.append(control()->namedType(name));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
virtual void visit(Function *type)
|
|
|
|
|
{
|
|
|
|
|
Function *funTy = control()->newFunction(0, 0);
|
|
|
|
|
funTy->copy(type);
|
2010-10-06 15:49:59 +02:00
|
|
|
funTy->setConst(type->isConst());
|
|
|
|
|
funTy->setVolatile(type->isVolatile());
|
2010-07-16 11:03:39 +02:00
|
|
|
|
|
|
|
|
funTy->setName(rewrite->rewriteName(type->name()));
|
|
|
|
|
|
|
|
|
|
funTy->setReturnType(rewrite->rewriteType(type->returnType()));
|
|
|
|
|
|
2013-03-13 12:51:58 +01:00
|
|
|
for (unsigned i = 0, argc = type->argumentCount(); i < argc; ++i) {
|
2010-07-16 11:03:39 +02:00
|
|
|
Symbol *arg = type->argumentAt(i);
|
|
|
|
|
|
|
|
|
|
Argument *newArg = control()->newArgument(0, 0);
|
|
|
|
|
newArg->copy(arg);
|
|
|
|
|
newArg->setName(rewrite->rewriteName(arg->name()));
|
|
|
|
|
newArg->setType(rewrite->rewriteType(arg->type()));
|
|
|
|
|
|
2011-10-25 11:28:51 +02:00
|
|
|
// the copy() call above set the scope to 'type'
|
|
|
|
|
// reset it to 0 before adding addMember to avoid assert
|
2013-07-08 15:28:07 +02:00
|
|
|
newArg->resetEnclosingScope();
|
2010-08-05 17:02:25 +02:00
|
|
|
funTy->addMember(newArg);
|
2010-07-16 11:03:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
temps.append(funTy);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
virtual void visit(Namespace *type)
|
|
|
|
|
{
|
|
|
|
|
qWarning() << Q_FUNC_INFO;
|
|
|
|
|
temps.append(type);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
virtual void visit(Class *type)
|
|
|
|
|
{
|
|
|
|
|
qWarning() << Q_FUNC_INFO;
|
|
|
|
|
temps.append(type);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
virtual void visit(Enum *type)
|
|
|
|
|
{
|
|
|
|
|
qWarning() << Q_FUNC_INFO;
|
|
|
|
|
temps.append(type);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
virtual void visit(ForwardClassDeclaration *type)
|
|
|
|
|
{
|
|
|
|
|
qWarning() << Q_FUNC_INFO;
|
|
|
|
|
temps.append(type);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
virtual void visit(ObjCClass *type)
|
|
|
|
|
{
|
|
|
|
|
qWarning() << Q_FUNC_INFO;
|
|
|
|
|
temps.append(type);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
virtual void visit(ObjCProtocol *type)
|
|
|
|
|
{
|
|
|
|
|
qWarning() << Q_FUNC_INFO;
|
|
|
|
|
temps.append(type);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
virtual void visit(ObjCMethod *type)
|
|
|
|
|
{
|
|
|
|
|
qWarning() << Q_FUNC_INFO;
|
|
|
|
|
temps.append(type);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
virtual void visit(ObjCForwardClassDeclaration *type)
|
|
|
|
|
{
|
|
|
|
|
qWarning() << Q_FUNC_INFO;
|
|
|
|
|
temps.append(type);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
virtual void visit(ObjCForwardProtocolDeclaration *type)
|
|
|
|
|
{
|
|
|
|
|
qWarning() << Q_FUNC_INFO;
|
|
|
|
|
temps.append(type);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class RewriteName: public NameVisitor
|
|
|
|
|
{
|
|
|
|
|
Rewrite *rewrite;
|
|
|
|
|
QList<const Name *> temps;
|
|
|
|
|
|
|
|
|
|
Control *control() const
|
|
|
|
|
{ return rewrite->control; }
|
|
|
|
|
|
|
|
|
|
const Identifier *identifier(const Identifier *other) const
|
|
|
|
|
{
|
|
|
|
|
if (! other)
|
|
|
|
|
return 0;
|
|
|
|
|
|
2010-08-11 14:24:28 +02:00
|
|
|
return control()->identifier(other->chars(), other->size());
|
2010-07-16 11:03:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
RewriteName(Rewrite *r): rewrite(r) {}
|
|
|
|
|
|
|
|
|
|
const Name *operator()(const Name *name)
|
|
|
|
|
{
|
|
|
|
|
if (! name)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
accept(name);
|
|
|
|
|
return temps.takeLast();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
virtual void visit(const QualifiedNameId *name)
|
|
|
|
|
{
|
|
|
|
|
const Name *base = rewrite->rewriteName(name->base());
|
|
|
|
|
const Name *n = rewrite->rewriteName(name->name());
|
|
|
|
|
temps.append(control()->qualifiedNameId(base, n));
|
|
|
|
|
}
|
|
|
|
|
|
2010-09-02 11:59:01 +02:00
|
|
|
virtual void visit(const Identifier *name)
|
2010-07-16 11:03:39 +02:00
|
|
|
{
|
2010-09-02 11:59:01 +02:00
|
|
|
temps.append(control()->identifier(name->chars(), name->size()));
|
2010-07-16 11:03:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
virtual void visit(const TemplateNameId *name)
|
|
|
|
|
{
|
|
|
|
|
QVarLengthArray<FullySpecifiedType, 8> args(name->templateArgumentCount());
|
|
|
|
|
for (unsigned i = 0; i < name->templateArgumentCount(); ++i)
|
|
|
|
|
args[i] = rewrite->rewriteType(name->templateArgumentAt(i));
|
2013-01-12 22:05:41 +01:00
|
|
|
temps.append(control()->templateNameId(identifier(name->identifier()), name->isSpecialization(),
|
|
|
|
|
args.data(), args.size()));
|
2010-07-16 11:03:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
virtual void visit(const DestructorNameId *name)
|
|
|
|
|
{
|
|
|
|
|
temps.append(control()->destructorNameId(identifier(name->identifier())));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
virtual void visit(const OperatorNameId *name)
|
|
|
|
|
{
|
|
|
|
|
temps.append(control()->operatorNameId(name->kind()));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
virtual void visit(const ConversionNameId *name)
|
|
|
|
|
{
|
|
|
|
|
FullySpecifiedType ty = rewrite->rewriteType(name->type());
|
|
|
|
|
temps.append(control()->conversionNameId(ty));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
virtual void visit(const SelectorNameId *name)
|
|
|
|
|
{
|
|
|
|
|
QVarLengthArray<const Name *, 8> names(name->nameCount());
|
|
|
|
|
for (unsigned i = 0; i < name->nameCount(); ++i)
|
|
|
|
|
names[i] = rewrite->rewriteName(name->nameAt(i));
|
|
|
|
|
temps.append(control()->selectorNameId(names.constData(), names.size(), name->hasArguments()));
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
public: // attributes
|
|
|
|
|
Control *control;
|
2010-07-19 19:24:31 +02:00
|
|
|
SubstitutionEnvironment *env;
|
2010-07-16 11:03:39 +02:00
|
|
|
RewriteType rewriteType;
|
|
|
|
|
RewriteName rewriteName;
|
|
|
|
|
};
|
|
|
|
|
|
2010-07-20 15:04:50 +02:00
|
|
|
SubstitutionEnvironment::SubstitutionEnvironment()
|
|
|
|
|
: _scope(0)
|
2010-07-16 11:03:39 +02:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2010-07-20 15:04:50 +02:00
|
|
|
FullySpecifiedType SubstitutionEnvironment::apply(const Name *name, Rewrite *rewrite) const
|
2010-07-16 11:03:39 +02:00
|
|
|
{
|
2010-07-20 15:04:50 +02:00
|
|
|
if (name) {
|
|
|
|
|
for (int index = _substs.size() - 1; index != -1; --index) {
|
|
|
|
|
const Substitution *subst = _substs.at(index);
|
|
|
|
|
|
|
|
|
|
FullySpecifiedType ty = subst->apply(name, rewrite);
|
|
|
|
|
if (! ty->isUndefinedType())
|
|
|
|
|
return ty;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return FullySpecifiedType();
|
2010-07-16 11:03:39 +02:00
|
|
|
}
|
|
|
|
|
|
2010-07-20 15:04:50 +02:00
|
|
|
void SubstitutionEnvironment::enter(Substitution *subst)
|
2010-07-16 11:03:39 +02:00
|
|
|
{
|
2010-07-20 15:04:50 +02:00
|
|
|
_substs.append(subst);
|
|
|
|
|
}
|
2010-07-16 11:03:39 +02:00
|
|
|
|
2010-07-20 15:04:50 +02:00
|
|
|
void SubstitutionEnvironment::leave()
|
|
|
|
|
{
|
|
|
|
|
_substs.removeLast();
|
|
|
|
|
}
|
2010-07-16 11:03:39 +02:00
|
|
|
|
2010-07-20 15:04:50 +02:00
|
|
|
Scope *SubstitutionEnvironment::scope() const
|
|
|
|
|
{
|
|
|
|
|
return _scope;
|
|
|
|
|
}
|
2010-07-16 11:03:39 +02:00
|
|
|
|
2010-07-20 15:04:50 +02:00
|
|
|
Scope *SubstitutionEnvironment::switchScope(Scope *scope)
|
|
|
|
|
{
|
|
|
|
|
Scope *previous = _scope;
|
|
|
|
|
_scope = scope;
|
|
|
|
|
return previous;
|
|
|
|
|
}
|
2010-07-16 11:03:39 +02:00
|
|
|
|
2010-07-20 15:04:50 +02:00
|
|
|
const LookupContext &SubstitutionEnvironment::context() const
|
|
|
|
|
{
|
|
|
|
|
return _context;
|
2010-07-16 11:03:39 +02:00
|
|
|
}
|
|
|
|
|
|
2010-07-20 15:04:50 +02:00
|
|
|
void SubstitutionEnvironment::setContext(const LookupContext &context)
|
|
|
|
|
{
|
|
|
|
|
_context = context;
|
|
|
|
|
}
|
2010-07-16 11:03:39 +02:00
|
|
|
|
|
|
|
|
SubstitutionMap::SubstitutionMap()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SubstitutionMap::~SubstitutionMap()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SubstitutionMap::bind(const Name *name, const FullySpecifiedType &ty)
|
|
|
|
|
{
|
|
|
|
|
_map.append(qMakePair(name, ty));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FullySpecifiedType SubstitutionMap::apply(const Name *name, Rewrite *) const
|
|
|
|
|
{
|
|
|
|
|
for (int n = _map.size() - 1; n != -1; --n) {
|
|
|
|
|
const QPair<const Name *, FullySpecifiedType> &p = _map.at(n);
|
|
|
|
|
|
2014-05-15 12:00:13 -04:00
|
|
|
if (name->match(p.first))
|
2010-07-16 11:03:39 +02:00
|
|
|
return p.second;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return FullySpecifiedType();
|
|
|
|
|
}
|
|
|
|
|
|
2010-07-20 15:04:50 +02:00
|
|
|
|
2011-07-28 21:17:28 +02:00
|
|
|
UseMinimalNames::UseMinimalNames(ClassOrNamespace *target)
|
|
|
|
|
: _target(target)
|
2010-07-20 15:04:50 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2011-07-28 21:17:28 +02:00
|
|
|
UseMinimalNames::~UseMinimalNames()
|
2010-07-20 15:04:50 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2011-07-28 21:17:28 +02:00
|
|
|
FullySpecifiedType UseMinimalNames::apply(const Name *name, Rewrite *rewrite) const
|
2010-07-20 15:04:50 +02:00
|
|
|
{
|
|
|
|
|
SubstitutionEnvironment *env = rewrite->env;
|
|
|
|
|
Scope *scope = env->scope();
|
|
|
|
|
|
2012-09-18 22:12:07 +02:00
|
|
|
if (name->isTemplateNameId() ||
|
|
|
|
|
(name->isQualifiedNameId() && name->asQualifiedNameId()->name()->isTemplateNameId()))
|
2010-07-20 15:09:44 +02:00
|
|
|
return FullySpecifiedType();
|
|
|
|
|
|
2010-07-20 15:04:50 +02:00
|
|
|
if (! scope)
|
|
|
|
|
return FullySpecifiedType();
|
|
|
|
|
|
|
|
|
|
const LookupContext &context = env->context();
|
|
|
|
|
Control *control = rewrite->control;
|
|
|
|
|
|
|
|
|
|
const QList<LookupItem> results = context.lookup(name, scope);
|
2014-05-19 18:21:45 +03:00
|
|
|
if (!results.isEmpty()) {
|
|
|
|
|
const LookupItem &r = results.first();
|
Remove braces for single lines of conditions
#!/usr/bin/env ruby
Dir.glob('**/*.cpp') { |file|
# skip ast (excluding paste, astpath, and canv'ast'imer)
next if file =~ /ast[^eip]|keywords\.|qualifiers|preprocessor|names.cpp/i
s = File.read(file)
next if s.include?('qlalr')
orig = s.dup
s.gsub!(/\n *if [^\n]*{\n[^\n]*\n\s+}(\s+else if [^\n]* {\n[^\n]*\n\s+})*(\s+else {\n[^\n]*\n\s+})?\n/m) { |m|
res = $&
if res =~ /^\s*(\/\/|[A-Z_]{3,})/ # C++ comment or macro (Q_UNUSED, SDEBUG), do not touch braces
res
else
res.gsub!('} else', 'else')
res.gsub!(/\n +} *\n/m, "\n")
res.gsub(/ *{$/, '')
end
}
s.gsub!(/ *$/, '')
File.open(file, 'wb').write(s) if s != orig
}
Change-Id: I3b30ee60df0986f66c02132c65fc38a3fbb6bbdc
Reviewed-by: hjk <qthjk@ovi.com>
2013-01-08 03:32:53 +02:00
|
|
|
if (Symbol *d = r.declaration())
|
2011-10-31 12:09:27 +01:00
|
|
|
return control->namedType(LookupContext::minimalName(d, _target, control));
|
2010-07-20 15:04:50 +02:00
|
|
|
|
|
|
|
|
return r.type();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return FullySpecifiedType();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2011-07-28 21:17:28 +02:00
|
|
|
UseQualifiedNames::UseQualifiedNames()
|
|
|
|
|
: UseMinimalNames(0)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
UseQualifiedNames::~UseQualifiedNames()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2010-11-25 13:51:54 +01:00
|
|
|
FullySpecifiedType rewriteType(const FullySpecifiedType &type,
|
|
|
|
|
SubstitutionEnvironment *env,
|
|
|
|
|
Control *control)
|
2010-07-16 11:03:39 +02:00
|
|
|
{
|
|
|
|
|
Rewrite rewrite(control, env);
|
|
|
|
|
return rewrite.rewriteType(type);
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-25 13:51:54 +01:00
|
|
|
const Name *rewriteName(const Name *name,
|
|
|
|
|
SubstitutionEnvironment *env,
|
|
|
|
|
Control *control)
|
2010-07-16 11:03:39 +02:00
|
|
|
{
|
|
|
|
|
Rewrite rewrite(control, env);
|
|
|
|
|
return rewrite.rewriteName(name);
|
|
|
|
|
}
|
2010-11-25 13:51:54 +01:00
|
|
|
|
|
|
|
|
} // namespace CPlusPlus
|