This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 2d96fcd91c Make more friendly with unions. Reviewed as https://reviews [...] new dff959c181 Introduce the ability to dump the AST to JSON.
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: include/clang/AST/ASTDumperUtils.h | 6 + include/clang/AST/DeclBase.h | 4 +- include/clang/AST/JSONNodeDumper.h | 330 +++++++++ include/clang/Driver/CC1Options.td | 6 + include/clang/Frontend/ASTConsumers.h | 9 +- include/clang/Frontend/FrontendOptions.h | 4 + lib/AST/ASTDumper.cpp | 19 +- lib/AST/CMakeLists.txt | 1 + lib/AST/JSONNodeDumper.cpp | 781 +++++++++++++++++++++ lib/Frontend/ASTConsumers.cpp | 23 +- lib/Frontend/CompilerInvocation.cpp | 20 +- lib/Frontend/FrontendActions.cpp | 9 +- test/AST/ast-dump-enum-json.cpp | 484 +++++++++++++ test/AST/ast-dump-if-json.cpp | 964 ++++++++++++++++++++++++++ test/AST/ast-dump-namespace-json.cpp | 211 ++++++ tools/clang-check/ClangCheck.cpp | 6 +- tools/clang-import-test/clang-import-test.cpp | 5 +- 17 files changed, 2850 insertions(+), 32 deletions(-) create mode 100644 include/clang/AST/JSONNodeDumper.h create mode 100644 lib/AST/JSONNodeDumper.cpp create mode 100644 test/AST/ast-dump-enum-json.cpp create mode 100644 test/AST/ast-dump-if-json.cpp create mode 100644 test/AST/ast-dump-namespace-json.cpp