This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 36bd96f989 [lit] Improve tool substitution in lit. new 172bca309c [refactor] add support for refactoring options
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: .../Tooling/Refactoring/RefactoringActionRule.h | 9 ++ .../RefactoringActionRuleRequirements.h | 40 +++++++ .../Refactoring/RefactoringActionRulesInternal.h | 47 +++++++- .../clang/Tooling/Refactoring/RefactoringOption.h | 64 +++++++++++ .../Tooling/Refactoring/RefactoringOptionVisitor.h | 62 +++++++++++ .../clang/Tooling/Refactoring/RefactoringOptions.h | 58 ++++++++++ .../Tooling/Refactoring/Rename/RenamingAction.h | 12 +- lib/Tooling/Refactoring/Rename/RenamingAction.cpp | 24 ++-- test/Refactor/LocalRename/Field.cpp | 2 +- test/Refactor/tool-test-support.c | 12 +- tools/clang-refactor/ClangRefactor.cpp | 121 +++++++++++++++++++-- 11 files changed, 423 insertions(+), 28 deletions(-) create mode 100644 include/clang/Tooling/Refactoring/RefactoringOption.h create mode 100644 include/clang/Tooling/Refactoring/RefactoringOptionVisitor.h create mode 100644 include/clang/Tooling/Refactoring/RefactoringOptions.h