This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from f9eb14961d [Headers] Fix the return type of _InterlockedCompareExchange_rel new 5a2269c689 [refactor] add clang-refactor tool with initial testing supp [...]
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: include/clang/Tooling/Refactoring/AtomicChange.h | 2 + .../clang/Tooling/Refactoring/RefactoringAction.h | 64 ++++ .../Refactoring/RefactoringActionRegistry.def | 7 + .../Tooling/Refactoring/RefactoringActionRule.h | 4 + .../RefactoringActionRuleRequirementsInternal.h | 16 +- .../Tooling/Refactoring/RefactoringActionRules.h | 9 +- .../Refactoring/RefactoringActionRulesInternal.h | 13 +- .../Tooling/Refactoring/RefactoringRuleContext.h | 15 + .../Tooling/Refactoring/Rename/USRFindingAction.h | 5 + .../Refactoring/SourceSelectionConstraints.h | 15 +- include/clang/module.modulemap | 2 + lib/Tooling/Refactoring/AtomicChange.cpp | 9 + lib/Tooling/Refactoring/CMakeLists.txt | 1 + lib/Tooling/Refactoring/RefactoringActions.cpp | 35 ++ lib/Tooling/Refactoring/Rename/RenamingAction.cpp | 61 ++++ .../Refactoring/Rename/USRFindingAction.cpp | 6 + test/CMakeLists.txt | 1 + test/Refactor/LocalRename/Field.cpp | 9 + test/Refactor/tool-common-options.c | 6 + test/Refactor/tool-test-support.c | 41 +++ test/clang-rename/Field.cpp | 15 - tools/CMakeLists.txt | 1 + tools/clang-refactor/CMakeLists.txt | 20 ++ tools/clang-refactor/ClangRefactor.cpp | 391 +++++++++++++++++++++ tools/clang-refactor/TestSupport.cpp | 343 ++++++++++++++++++ tools/clang-refactor/TestSupport.h | 107 ++++++ unittests/Tooling/RefactoringActionRulesTest.cpp | 20 +- 27 files changed, 1183 insertions(+), 35 deletions(-) create mode 100644 include/clang/Tooling/Refactoring/RefactoringAction.h create mode 100644 include/clang/Tooling/Refactoring/RefactoringActionRegistry.def create mode 100644 lib/Tooling/Refactoring/RefactoringActions.cpp create mode 100644 test/Refactor/LocalRename/Field.cpp create mode 100644 test/Refactor/tool-common-options.c create mode 100644 test/Refactor/tool-test-support.c delete mode 100644 test/clang-rename/Field.cpp create mode 100644 tools/clang-refactor/CMakeLists.txt create mode 100644 tools/clang-refactor/ClangRefactor.cpp create mode 100644 tools/clang-refactor/TestSupport.cpp create mode 100644 tools/clang-refactor/TestSupport.h