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 3efd5ed8 [pp-trace] Delete -ignore and add a new option -callbacks new c3057fd2 [clangd] Add support for type hierarchy (super types only for now)
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/ClangdLSPServer.cpp | 9 + clangd/ClangdLSPServer.h | 2 + clangd/ClangdServer.cpp | 18 +- clangd/ClangdServer.h | 5 + clangd/FindSymbols.cpp | 61 +---- clangd/FindSymbols.h | 7 +- clangd/Protocol.cpp | 115 ++++++++ clangd/Protocol.h | 68 +++++ clangd/XRefs.cpp | 133 +++++++++ clangd/XRefs.h | 11 + clangd/index/SymbolCollector.cpp | 7 +- clangd/index/SymbolCollector.h | 3 +- test/clangd/initialize-params.test | 1 + test/clangd/type-hierarchy.test | 92 +++++++ unittests/clangd/CMakeLists.txt | 1 + unittests/clangd/Matchers.h | 67 +++++ unittests/clangd/TypeHierarchyTests.cpp | 462 ++++++++++++++++++++++++++++++++ 17 files changed, 991 insertions(+), 71 deletions(-) create mode 100644 test/clangd/type-hierarchy.test create mode 100644 unittests/clangd/TypeHierarchyTests.cpp