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 dd33669b [clang-doc] Refactoring mapper to map by scope new c8655571 Revert "[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 | 81 +--- clang-doc/BitcodeReader.h | 3 +- clang-doc/BitcodeWriter.cpp | 14 - clang-doc/BitcodeWriter.h | 26 +- clang-doc/Mapper.cpp | 12 +- clang-doc/Representation.cpp | 70 +-- 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/clang-doc/test_cases/module.cpp | 15 - 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, 1629 insertions(+), 4149 deletions(-) delete mode 100644 test/clang-doc/bc-linkage.cpp delete mode 100644 test/clang-doc/bc-module.cpp delete mode 100644 test/clang-doc/mapper-linkage.cpp delete mode 100644 test/clang-doc/mapper-module.cpp create mode 100644 test/clang-doc/module.cpp delete mode 100644 test/clang-doc/public-comment.cpp delete mode 100644 test/clang-doc/public-linkage.cpp delete mode 100644 test/clang-doc/public-namespace.cpp delete mode 100644 test/clang-doc/public-record.cpp create mode 100644 test/clang-doc/public-records.cpp delete mode 100644 test/clang-doc/test_cases/linkage.cpp delete mode 100644 test/clang-doc/test_cases/module.cpp delete mode 100644 test/clang-doc/yaml-linkage.cpp delete mode 100644 test/clang-doc/yaml-module.cpp