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 f1f4eb96 [clangd] Remove CompletionItem::SymbolScope extension. new 24670402 [clangd] Incorporate transitive #includes into code complete [...]
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/CMakeLists.txt | 1 + clangd/ClangdServer.cpp | 2 +- clangd/ClangdUnit.cpp | 35 +++---- clangd/ClangdUnit.h | 10 +- clangd/CodeComplete.cpp | 120 +++++++++++++---------- clangd/CodeComplete.h | 14 +-- clangd/FileDistance.cpp | 173 +++++++++++++++++++++++++++++++++ clangd/FileDistance.h | 109 +++++++++++++++++++++ clangd/Headers.cpp | 90 +++++++++++++---- clangd/Headers.h | 41 +++++++- clangd/Quality.cpp | 81 ++++----------- clangd/Quality.h | 24 +---- clangd/XRefs.cpp | 7 +- unittests/clangd/CMakeLists.txt | 1 + unittests/clangd/FileDistanceTests.cpp | 93 ++++++++++++++++++ unittests/clangd/HeadersTests.cpp | 38 ++++++-- unittests/clangd/QualityTests.cpp | 73 ++++---------- 17 files changed, 653 insertions(+), 259 deletions(-) create mode 100644 clangd/FileDistance.cpp create mode 100644 clangd/FileDistance.h create mode 100644 unittests/clangd/FileDistanceTests.cpp