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 a602acee [clangd] Guard fuzzer against empty inputs. new 3cba40cf [clangd] Introduce Dex symbol index search tokens
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 | 3 + clangd/index/dex/Token.h | 112 +++++++++++++++++++++++++++++++ clangd/index/dex/Trigram.cpp | 132 +++++++++++++++++++++++++++++++++++++ clangd/index/dex/Trigram.h | 62 +++++++++++++++++ unittests/clangd/CMakeLists.txt | 5 +- unittests/clangd/DexIndexTests.cpp | 96 +++++++++++++++++++++++++++ 6 files changed, 408 insertions(+), 2 deletions(-) create mode 100644 clangd/index/dex/Token.h create mode 100644 clangd/index/dex/Trigram.cpp create mode 100644 clangd/index/dex/Trigram.h create mode 100644 unittests/clangd/DexIndexTests.cpp