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 1ff4c4b9 [clangd] Collect the number of files referencing a symbol in [...] new 4e9db392 [clangd] Revamp handling of diagnostics.
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/ClangdLSPServer.cpp | 34 +-- clangd/ClangdLSPServer.h | 10 +- clangd/ClangdServer.cpp | 3 +- clangd/ClangdServer.h | 5 +- clangd/ClangdUnit.cpp | 168 ++------------- clangd/ClangdUnit.h | 22 +- clangd/Diagnostics.cpp | 364 +++++++++++++++++++++++++++++++++ clangd/Diagnostics.h | 103 ++++++++++ clangd/Protocol.h | 6 +- clangd/SourceCode.cpp | 8 + clangd/SourceCode.h | 4 + clangd/TUScheduler.cpp | 17 +- clangd/TUScheduler.h | 2 +- test/clangd/diagnostics.test | 14 -- test/clangd/execute-command.test | 28 --- test/clangd/extra-flags.test | 28 --- test/clangd/fixits.test | 40 +--- unittests/clangd/ClangdTests.cpp | 34 ++- unittests/clangd/ClangdUnitTests.cpp | 188 +++++++++++++---- unittests/clangd/CodeCompleteTests.cpp | 17 +- unittests/clangd/TUSchedulerTests.cpp | 22 +- unittests/clangd/XRefsTests.cpp | 4 +- 23 files changed, 732 insertions(+), 390 deletions(-) create mode 100644 clangd/Diagnostics.cpp create mode 100644 clangd/Diagnostics.h