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 c8655571 Revert "[clang-doc] Refactoring mapper to map by scope" new ca69f0ef Reland "[clang-doc] Refactoring mapper to map by scope"
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: clang-doc/BitcodeReader.cpp | 85 ++- clang-doc/BitcodeReader.h | 3 +- clang-doc/BitcodeWriter.cpp | 14 + clang-doc/BitcodeWriter.h | 26 +- clang-doc/Mapper.cpp | 12 +- clang-doc/Representation.cpp | 72 +- clang-doc/Representation.h | 37 + clang-doc/Serialize.cpp | 142 +++- clang-doc/Serialize.h | 22 +- clang-doc/YAMLGenerator.cpp | 14 +- clang-doc/gen_tests.py | 20 +- clang-doc/tool/ClangDocMain.cpp | 82 +- test/clang-doc/bc-comment.cpp | 282 +++---- test/clang-doc/bc-linkage.cpp | 844 +++++++++++++++++++++ test/clang-doc/bc-module.cpp | 87 +++ test/clang-doc/bc-namespace.cpp | 172 ++--- test/clang-doc/bc-record.cpp | 390 +++++----- test/clang-doc/mapper-comment.cpp | 72 +- test/clang-doc/mapper-linkage.cpp | 402 ++++++++++ test/clang-doc/mapper-module.cpp | 51 ++ test/clang-doc/mapper-namespace.cpp | 154 ++-- test/clang-doc/mapper-record.cpp | 327 +++----- test/clang-doc/module.cpp | 61 -- test/clang-doc/public-comment.cpp | 138 ++++ test/clang-doc/public-linkage.cpp | 299 ++++++++ test/clang-doc/public-module.cpp | 84 +- test/clang-doc/public-namespace.cpp | 96 +++ test/clang-doc/public-record.cpp | 208 +++++ test/clang-doc/public-records.cpp | 341 --------- test/clang-doc/test_cases/linkage.cpp | 95 +++ .../test_cases/{namespace.cpp => module.cpp} | 19 +- test/clang-doc/yaml-comment.cpp | 176 ++--- test/clang-doc/yaml-linkage.cpp | 529 +++++++++++++ test/clang-doc/yaml-module.cpp | 63 ++ test/clang-doc/yaml-namespace.cpp | 123 ++- test/clang-doc/yaml-record.cpp | 246 +++--- 36 files changed, 4141 insertions(+), 1647 deletions(-) create mode 100644 test/clang-doc/bc-linkage.cpp create mode 100644 test/clang-doc/bc-module.cpp create mode 100644 test/clang-doc/mapper-linkage.cpp create mode 100644 test/clang-doc/mapper-module.cpp delete mode 100644 test/clang-doc/module.cpp create mode 100644 test/clang-doc/public-comment.cpp create mode 100644 test/clang-doc/public-linkage.cpp create mode 100644 test/clang-doc/public-namespace.cpp create mode 100644 test/clang-doc/public-record.cpp delete mode 100644 test/clang-doc/public-records.cpp create mode 100644 test/clang-doc/test_cases/linkage.cpp copy test/clang-doc/test_cases/{namespace.cpp => module.cpp} (51%) create mode 100644 test/clang-doc/yaml-linkage.cpp create mode 100644 test/clang-doc/yaml-module.cpp