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 a7616ca3 [clangd] Fix diagnostic errors in the test code, NFC. new d5cb4d02 Reland "[clang-doc] Setup clang-doc frontend framework"
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: CMakeLists.txt | 1 + clang-doc/BitcodeWriter.cpp | 515 ++++++++++++++++++++++++++ clang-doc/BitcodeWriter.h | 201 ++++++++++ {clang-move => clang-doc}/CMakeLists.txt | 10 +- clang-doc/ClangDoc.cpp | 61 +++ clang-doc/ClangDoc.h | 33 ++ clang-doc/Mapper.cpp | 86 +++++ clang-doc/Mapper.h | 57 +++ clang-doc/Representation.h | 184 +++++++++ clang-doc/Serialize.cpp | 336 +++++++++++++++++ clang-doc/Serialize.h | 53 +++ {clang-move => clang-doc}/tool/CMakeLists.txt | 11 +- clang-doc/tool/ClangDocMain.cpp | 114 ++++++ docs/clang-doc.rst | 62 ++++ test/CMakeLists.txt | 1 + test/clang-doc/mapper-class-in-class.cpp | 35 ++ test/clang-doc/mapper-class-in-function.cpp | 38 ++ test/clang-doc/mapper-class.cpp | 19 + test/clang-doc/mapper-comments.cpp | 172 +++++++++ test/clang-doc/mapper-enum.cpp | 36 ++ test/clang-doc/mapper-function.cpp | 25 ++ test/clang-doc/mapper-method.cpp | 43 +++ test/clang-doc/mapper-namespace.cpp | 17 + test/clang-doc/mapper-struct.cpp | 23 ++ test/clang-doc/mapper-union.cpp | 29 ++ 25 files changed, 2152 insertions(+), 10 deletions(-) create mode 100644 clang-doc/BitcodeWriter.cpp create mode 100644 clang-doc/BitcodeWriter.h copy {clang-move => clang-doc}/CMakeLists.txt (65%) create mode 100644 clang-doc/ClangDoc.cpp create mode 100644 clang-doc/ClangDoc.h create mode 100644 clang-doc/Mapper.cpp create mode 100644 clang-doc/Mapper.h create mode 100644 clang-doc/Representation.h create mode 100644 clang-doc/Serialize.cpp create mode 100644 clang-doc/Serialize.h copy {clang-move => clang-doc}/tool/CMakeLists.txt (56%) create mode 100644 clang-doc/tool/ClangDocMain.cpp create mode 100644 docs/clang-doc.rst create mode 100644 test/clang-doc/mapper-class-in-class.cpp create mode 100644 test/clang-doc/mapper-class-in-function.cpp create mode 100644 test/clang-doc/mapper-class.cpp create mode 100644 test/clang-doc/mapper-comments.cpp create mode 100644 test/clang-doc/mapper-enum.cpp create mode 100644 test/clang-doc/mapper-function.cpp create mode 100644 test/clang-doc/mapper-method.cpp create mode 100644 test/clang-doc/mapper-namespace.cpp create mode 100644 test/clang-doc/mapper-struct.cpp create mode 100644 test/clang-doc/mapper-union.cpp