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 26903913 [clang-tools-extra] Update uses of DEBUG macro to LLVM_DEBUG. new e7b97cae [clangd] Extract scoring/ranking logic, and shave yaks.
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/CodeComplete.cpp | 141 +++++++++-------------------------- clangd/Quality.cpp | 108 +++++++++++++++++++++++++++ clangd/Quality.h | 126 +++++++++++++++++++++++++++++++ unittests/clangd/CMakeLists.txt | 2 + unittests/clangd/ClangdUnitTests.cpp | 35 ++------- unittests/clangd/FileIndexTests.cpp | 71 +++++------------- unittests/clangd/QualityTests.cpp | 123 ++++++++++++++++++++++++++++++ unittests/clangd/TestFS.cpp | 4 +- unittests/clangd/TestTU.cpp | 95 +++++++++++++++++++++++ unittests/clangd/TestTU.h | 59 +++++++++++++++ unittests/clangd/XRefsTests.cpp | 48 +++--------- 12 files changed, 589 insertions(+), 224 deletions(-) create mode 100644 clangd/Quality.cpp create mode 100644 clangd/Quality.h create mode 100644 unittests/clangd/QualityTests.cpp create mode 100644 unittests/clangd/TestTU.cpp create mode 100644 unittests/clangd/TestTU.h