]> granicus.if.org Git - clang/commit
Adds the AST Matcher library, which provides a in-C++ DSL to express
authorManuel Klimek <klimek@google.com>
Fri, 6 Jul 2012 05:48:52 +0000 (05:48 +0000)
committerManuel Klimek <klimek@google.com>
Fri, 6 Jul 2012 05:48:52 +0000 (05:48 +0000)
commit4da216637fa1ad4bdfd31bc265edb57ca35c2c12
tree08b93fbc99de82a43b0bb4dba96dbfbf96abac45
parentea7eb071166c69e11bfda4f1d89d5c2b6bbcdca3
Adds the AST Matcher library, which provides a in-C++ DSL to express
matches on interesting parts of the AST, and callback mechanisms to
act on them.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@159805 91177308-0d34-0410-b5e6-96231b3b80d8
16 files changed:
include/clang/ASTMatchers/ASTMatchFinder.h [new file with mode: 0644]
include/clang/ASTMatchers/ASTMatchers.h [new file with mode: 0644]
include/clang/ASTMatchers/ASTMatchersInternal.h [new file with mode: 0644]
include/clang/ASTMatchers/ASTMatchersMacros.h [new file with mode: 0644]
lib/ASTMatchers/ASTMatchFinder.cpp [new file with mode: 0644]
lib/ASTMatchers/ASTMatchersInternal.cpp [new file with mode: 0644]
lib/ASTMatchers/CMakeLists.txt [new file with mode: 0644]
lib/ASTMatchers/Makefile [new file with mode: 0644]
lib/CMakeLists.txt
lib/Makefile
unittests/ASTMatchers/ASTMatchersTest.cpp [new file with mode: 0644]
unittests/ASTMatchers/ASTMatchersTest.h [new file with mode: 0644]
unittests/ASTMatchers/CMakeLists.txt [new file with mode: 0644]
unittests/ASTMatchers/Makefile [new file with mode: 0644]
unittests/CMakeLists.txt
unittests/Makefile