]> granicus.if.org Git - clang/commit
[refactor] Describe refactorings in the operation classes
authorAlex Lorenz <arphaman@gmail.com>
Fri, 27 Oct 2017 18:19:11 +0000 (18:19 +0000)
committerAlex Lorenz <arphaman@gmail.com>
Fri, 27 Oct 2017 18:19:11 +0000 (18:19 +0000)
commit99af5f07de88d6757dedc7ee6a8197fab0fe8c0f
treeca6a9414b877de2816023fa16fd5188451eb4575
parent1c09b76713c0a3521937e035b3ab4edef687e7ee
[refactor] Describe refactorings in the operation classes

This commit changes the way that the refactoring operation classes are
structured:
- Users have to call `initiate` instead of constructing an instance of the
  class. The `initiate` is now supposed to have custom initiation logic, and
  you don't need to subclass the builtin requirements.
- A new `describe` function returns a structure with the id, title and the
  description of the refactoring operation.

The refactoring action classes are now placed into one common place in
RefactoringActions.cpp instead of being separate.

Differential Revision: https://reviews.llvm.org/D38985

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@316780 91177308-0d34-0410-b5e6-96231b3b80d8
include/clang/Tooling/Refactoring/Extract/Extract.h [new file with mode: 0644]
include/clang/Tooling/Refactoring/RefactoringActionRegistry.def [deleted file]
include/clang/Tooling/Refactoring/RefactoringActionRule.h
include/clang/Tooling/Refactoring/RefactoringActionRulesInternal.h
include/clang/Tooling/Refactoring/Rename/RenamingAction.h
include/clang/module.modulemap
lib/Tooling/Refactoring/Extract.cpp
lib/Tooling/Refactoring/RefactoringActions.cpp
lib/Tooling/Refactoring/Rename/RenamingAction.cpp
unittests/Tooling/RefactoringActionRulesTest.cpp