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 3211e00b [clangd] Add a capability to enable completions with fixes. new 5b763be7 [clangd] Add hidden tweaks to dump AST/selection.
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/ClangdLSPServer.cpp | 35 +++++-- clangd/ClangdServer.cpp | 38 ++++---- clangd/ClangdServer.h | 8 +- clangd/Protocol.cpp | 9 ++ clangd/Protocol.h | 23 +++++ clangd/Selection.cpp | 3 + clangd/refactor/Tweak.h | 44 +++++++-- clangd/refactor/tweaks/CMakeLists.txt | 1 + clangd/refactor/tweaks/DumpAST.cpp | 139 ++++++++++++++++++++++++++++ clangd/refactor/tweaks/RawStringLiteral.cpp | 14 ++- clangd/refactor/tweaks/SwapIfBranches.cpp | 11 +-- clangd/tool/ClangdMain.cpp | 6 ++ clangd/unittests/SelectionTests.cpp | 10 ++ clangd/unittests/TweakTests.cpp | 71 ++++++++++++-- 14 files changed, 359 insertions(+), 53 deletions(-) create mode 100644 clangd/refactor/tweaks/DumpAST.cpp