* Some file headers were missing for files in Core/ * Some headers were included but not necessary * CMakeLists.txt was linking in LLVMSupport even though CMakeLists in subdirs were linking it in too. * StringRefisation of constructors of types in FileOverrides.h * Other misc cleanups Author: Guillaume Papin <guillaume.papin@epitech.eu> llvm-svn: 185811
61 lines
2.1 KiB
C++
61 lines
2.1 KiB
C++
//===-- UseAuto/Actions.h - Matcher callback --------------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
///
|
|
/// \file
|
|
/// \brief This file contains the declarations for callbacks used by the
|
|
/// UseAuto transform.
|
|
///
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef CPP11_MIGRATE_USE_AUTO_ACTIONS_H
|
|
#define CPP11_MIGRATE_USE_AUTO_ACTIONS_H
|
|
|
|
#include "Core/Transform.h"
|
|
#include "clang/ASTMatchers/ASTMatchFinder.h"
|
|
#include "clang/Tooling/Refactoring.h"
|
|
|
|
/// \brief The callback to be used when replacing type specifiers of variable
|
|
/// declarations that are iterators.
|
|
class IteratorReplacer
|
|
: public clang::ast_matchers::MatchFinder::MatchCallback {
|
|
public:
|
|
IteratorReplacer(clang::tooling::Replacements &Replace,
|
|
unsigned &AcceptedChanges, RiskLevel, const Transform &Owner)
|
|
: Replace(Replace), AcceptedChanges(AcceptedChanges), Owner(Owner) {}
|
|
|
|
/// \brief Entry point to the callback called when matches are made.
|
|
virtual void run(const clang::ast_matchers::MatchFinder::MatchResult &Result)
|
|
LLVM_OVERRIDE;
|
|
|
|
private:
|
|
clang::tooling::Replacements &Replace;
|
|
unsigned &AcceptedChanges;
|
|
const Transform &Owner;
|
|
};
|
|
|
|
/// \brief The callback used when replacing type specifiers of variable
|
|
/// declarations initialized by a C++ new expression.
|
|
class NewReplacer : public clang::ast_matchers::MatchFinder::MatchCallback {
|
|
public:
|
|
NewReplacer(clang::tooling::Replacements &Replace, unsigned &AcceptedChanges,
|
|
RiskLevel, const Transform &Owner)
|
|
: Replace(Replace), AcceptedChanges(AcceptedChanges), Owner(Owner) {}
|
|
|
|
/// \brief Entry point to the callback called when matches are made.
|
|
virtual void run(const clang::ast_matchers::MatchFinder::MatchResult &Result)
|
|
LLVM_OVERRIDE;
|
|
|
|
private:
|
|
clang::tooling::Replacements &Replace;
|
|
unsigned &AcceptedChanges;
|
|
const Transform &Owner;
|
|
};
|
|
|
|
#endif // CPP11_MIGRATE_USE_AUTO_ACTIONS_H
|