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 d572b55b [clangd] Support filtering by fixing scopes in fuzzyFind. new 81a5eb03 [clangd] Expose offset <-> LSP position functions, and fix bugs
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 | 1 + clangd/ClangdServer.cpp | 26 +----------- clangd/ClangdServer.h | 6 --- clangd/SourceCode.cpp | 41 ++++++++++++++++++ clangd/SourceCode.h | 29 +++++++++++++ unittests/clangd/CMakeLists.txt | 1 + unittests/clangd/CodeCompleteTests.cpp | 1 + unittests/clangd/SourceCodeTests.cpp | 76 ++++++++++++++++++++++++++++++++++ 9 files changed, 152 insertions(+), 30 deletions(-) create mode 100644 clangd/SourceCode.cpp create mode 100644 clangd/SourceCode.h create mode 100644 unittests/clangd/SourceCodeTests.cpp