This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang-tools-extra.
from bd7d071d [clangd] Sema ranking tweaks: downrank keywords and injected names. new bdb93f04 [clang-tidy] Add ExprMutationAnalyzer, that analyzes whether [...]
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: clang-tidy/utils/CMakeLists.txt | 1 + clang-tidy/utils/ExprMutationAnalyzer.cpp | 260 +++++++++ clang-tidy/utils/ExprMutationAnalyzer.h | 56 ++ unittests/clang-tidy/CMakeLists.txt | 1 + unittests/clang-tidy/ExprMutationAnalyzerTest.cpp | 609 ++++++++++++++++++++++ 5 files changed, 927 insertions(+) create mode 100644 clang-tidy/utils/ExprMutationAnalyzer.cpp create mode 100644 clang-tidy/utils/ExprMutationAnalyzer.h create mode 100644 unittests/clang-tidy/ExprMutationAnalyzerTest.cpp