This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 81e3b95d54 Revert rL365355 : [Syntax] Introduce syntax trees new 110c8b715e Reland r365355: [Syntax] Introduce syntax trees
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/Tooling/Syntax/BuildTree.h | 24 +++ include/clang/Tooling/Syntax/Nodes.h | 85 ++++++++++ include/clang/Tooling/Syntax/Tree.h | 154 ++++++++++++++++++ lib/Tooling/Syntax/BuildTree.cpp | 271 +++++++++++++++++++++++++++++++ lib/Tooling/Syntax/CMakeLists.txt | 5 + lib/Tooling/Syntax/Nodes.cpp | 33 ++++ lib/Tooling/Syntax/Tree.cpp | 145 +++++++++++++++++ unittests/Tooling/Syntax/CMakeLists.txt | 1 + unittests/Tooling/Syntax/TreeTest.cpp | 160 ++++++++++++++++++ 9 files changed, 878 insertions(+) create mode 100644 include/clang/Tooling/Syntax/BuildTree.h create mode 100644 include/clang/Tooling/Syntax/Nodes.h create mode 100644 include/clang/Tooling/Syntax/Tree.h create mode 100644 lib/Tooling/Syntax/BuildTree.cpp create mode 100644 lib/Tooling/Syntax/Nodes.cpp create mode 100644 lib/Tooling/Syntax/Tree.cpp create mode 100644 unittests/Tooling/Syntax/TreeTest.cpp