This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 27afea5500 Fix Wdocumentation warnings. NFCI. new 121ebecd22 Add a Visit overload for DynTypedNode to ASTNodeTraverser new 6da38a622b Extract ASTDumper to a header file
The 2 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/ASTDumper.h | 56 +++++++++ include/clang/AST/ASTNodeTraverser.h | 18 +++ lib/AST/ASTDumper.cpp | 47 +------- unittests/AST/ASTTraverserTest.cpp | 220 +++++++++++++++++++++++++++++++++++ unittests/AST/CMakeLists.txt | 1 + 5 files changed, 296 insertions(+), 46 deletions(-) create mode 100644 include/clang/AST/ASTDumper.h create mode 100644 unittests/AST/ASTTraverserTest.cpp