From e5dd70708596ae51455a0ffa086a00c5b29f8583 Mon Sep 17 00:00:00 2001 From: patrick Date: Mon, 3 Aug 2020 14:31:31 +0000 Subject: Import LLVM 10.0.0 release including clang, lld and lldb. ok hackroom tested by plenty --- .../lib/Tooling/Refactoring/RefactoringActions.cpp | 113 +++++++++++++++++++++ 1 file changed, 113 insertions(+) create mode 100644 gnu/llvm/clang/lib/Tooling/Refactoring/RefactoringActions.cpp (limited to 'gnu/llvm/clang/lib/Tooling/Refactoring/RefactoringActions.cpp') diff --git a/gnu/llvm/clang/lib/Tooling/Refactoring/RefactoringActions.cpp b/gnu/llvm/clang/lib/Tooling/Refactoring/RefactoringActions.cpp new file mode 100644 index 00000000000..7ac723f67c0 --- /dev/null +++ b/gnu/llvm/clang/lib/Tooling/Refactoring/RefactoringActions.cpp @@ -0,0 +1,113 @@ +//===--- RefactoringActions.cpp - Constructs refactoring actions ----------===// +// +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +// See https://llvm.org/LICENSE.txt for license information. +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +// +//===----------------------------------------------------------------------===// + +#include "clang/Tooling/Refactoring/Extract/Extract.h" +#include "clang/Tooling/Refactoring/RefactoringAction.h" +#include "clang/Tooling/Refactoring/RefactoringOptions.h" +#include "clang/Tooling/Refactoring/Rename/RenamingAction.h" + +namespace clang { +namespace tooling { + +namespace { + +class DeclNameOption final : public OptionalRefactoringOption { +public: + StringRef getName() const { return "name"; } + StringRef getDescription() const { + return "Name of the extracted declaration"; + } +}; + +// FIXME: Rewrite the Actions to avoid duplication of descriptions/names with +// rules. +class ExtractRefactoring final : public RefactoringAction { +public: + StringRef getCommand() const override { return "extract"; } + + StringRef getDescription() const override { + return "(WIP action; use with caution!) Extracts code into a new function"; + } + + /// Returns a set of refactoring actions rules that are defined by this + /// action. + RefactoringActionRules createActionRules() const override { + RefactoringActionRules Rules; + Rules.push_back(createRefactoringActionRule( + CodeRangeASTSelectionRequirement(), + OptionRequirement())); + return Rules; + } +}; + +class OldQualifiedNameOption : public RequiredRefactoringOption { +public: + StringRef getName() const override { return "old-qualified-name"; } + StringRef getDescription() const override { + return "The old qualified name to be renamed"; + } +}; + +class NewQualifiedNameOption : public RequiredRefactoringOption { +public: + StringRef getName() const override { return "new-qualified-name"; } + StringRef getDescription() const override { + return "The new qualified name to change the symbol to"; + } +}; + +class NewNameOption : public RequiredRefactoringOption { +public: + StringRef getName() const override { return "new-name"; } + StringRef getDescription() const override { + return "The new name to change the symbol to"; + } +}; + +// FIXME: Rewrite the Actions to avoid duplication of descriptions/names with +// rules. +class LocalRename final : public RefactoringAction { +public: + StringRef getCommand() const override { return "local-rename"; } + + StringRef getDescription() const override { + return "Finds and renames symbols in code with no indexer support"; + } + + /// Returns a set of refactoring actions rules that are defined by this + /// action. + RefactoringActionRules createActionRules() const override { + RefactoringActionRules Rules; + Rules.push_back(createRefactoringActionRule( + SourceRangeSelectionRequirement(), OptionRequirement())); + // FIXME: Use NewNameOption. + Rules.push_back(createRefactoringActionRule( + OptionRequirement(), + OptionRequirement())); + return Rules; + } +}; + +} // end anonymous namespace + +std::vector> createRefactoringActions() { + std::vector> Actions; + + Actions.push_back(std::make_unique()); + Actions.push_back(std::make_unique()); + + return Actions; +} + +RefactoringActionRules RefactoringAction::createActiveActionRules() { + // FIXME: Filter out rules that are not supported by a particular client. + return createActionRules(); +} + +} // end namespace tooling +} // end namespace clang -- cgit v1.2.3-59-g8ed1b