This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from beb7e51f02 clang-format: [JS] wrap optional properties in type aliases. new 6c70d597ab [rename] Introduce symbol occurrences
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/Rename/RenamingAction.h | 10 +++ .../clang/Tooling/Refactoring/Rename/SymbolName.h | 49 ++++++++++++ .../Tooling/Refactoring/Rename/SymbolOccurrences.h | 91 ++++++++++++++++++++++ .../Tooling/Refactoring/Rename/USRLocFinder.h | 12 ++- lib/Tooling/Refactoring/CMakeLists.txt | 1 + lib/Tooling/Refactoring/Rename/RenamingAction.cpp | 84 +++++++++++++------- .../Refactoring/Rename/SymbolOccurrences.cpp | 37 +++++++++ lib/Tooling/Refactoring/Rename/USRLocFinder.cpp | 25 +++--- 8 files changed, 266 insertions(+), 43 deletions(-) create mode 100644 include/clang/Tooling/Refactoring/Rename/SymbolName.h create mode 100644 include/clang/Tooling/Refactoring/Rename/SymbolOccurrences.h create mode 100644 lib/Tooling/Refactoring/Rename/SymbolOccurrences.cpp