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 ffc45831 [clangd] Remove an extra ";", NFC new b2db89d6 [clangd] Implementation of auto type expansion.
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: clangd/AST.cpp | 30 ++++++ clangd/AST.h | 16 ++++ clangd/Selection.cpp | 13 +++ clangd/Selection.h | 3 + clangd/XRefs.cpp | 18 +++- clangd/XRefs.h | 10 ++ clangd/refactor/tweaks/CMakeLists.txt | 1 + clangd/refactor/tweaks/ExpandAutoType.cpp | 119 ++++++++++++++++++++++++ clangd/test/code-action-request.test | 70 ++++++++++++++ clangd/unittests/ASTTests.cpp | 42 +++++++++ clangd/unittests/CMakeLists.txt | 1 + clangd/unittests/TweakTests.cpp | 148 ++++++++++++++++++++++++++++++ clangd/unittests/XRefsTests.cpp | 22 +++++ 13 files changed, 489 insertions(+), 4 deletions(-) create mode 100644 clangd/refactor/tweaks/ExpandAutoType.cpp create mode 100644 clangd/test/code-action-request.test create mode 100644 clangd/unittests/ASTTests.cpp