Manuel Klimek | 04616e4 | 2012-07-06 05:48:52 +0000 | [diff] [blame] | 1 | //===--- ASTMatchersInternal.cpp - Structural query framework -------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // Implements the base layer of the matcher framework. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "clang/ASTMatchers/ASTMatchers.h" |
| 15 | #include "clang/ASTMatchers/ASTMatchersInternal.h" |
| 16 | |
| 17 | namespace clang { |
| 18 | namespace ast_matchers { |
| 19 | namespace internal { |
| 20 | |
Manuel Klimek | a0c025f | 2013-06-19 15:42:45 +0000 | [diff] [blame] | 21 | void BoundNodesTreeBuilder::visitMatches(Visitor *ResultVisitor) { |
| 22 | if (Bindings.empty()) |
| 23 | Bindings.push_back(BoundNodesMap()); |
| 24 | for (unsigned i = 0, e = Bindings.size(); i != e; ++i) { |
| 25 | ResultVisitor->visitMatch(BoundNodes(Bindings[i])); |
Manuel Klimek | 021d56f | 2012-08-28 23:26:39 +0000 | [diff] [blame] | 26 | } |
| 27 | } |
| 28 | |
Manuel Klimek | a0c025f | 2013-06-19 15:42:45 +0000 | [diff] [blame] | 29 | void BoundNodesTreeBuilder::addMatch(const BoundNodesTreeBuilder &Other) { |
| 30 | for (unsigned i = 0, e = Other.Bindings.size(); i != e; ++i) { |
| 31 | Bindings.push_back(Other.Bindings[i]); |
Daniel Jasper | 94a5685 | 2012-11-16 18:39:22 +0000 | [diff] [blame] | 32 | } |
Manuel Klimek | 021d56f | 2012-08-28 23:26:39 +0000 | [diff] [blame] | 33 | } |
| 34 | |
Samuel Benzaquen | 31edb51 | 2013-06-03 19:31:08 +0000 | [diff] [blame] | 35 | DynTypedMatcher::~DynTypedMatcher() {} |
| 36 | |
| 37 | DynTypedMatcher *DynTypedMatcher::tryBind(StringRef ID) const { return NULL; } |
| 38 | |
Manuel Klimek | 04616e4 | 2012-07-06 05:48:52 +0000 | [diff] [blame] | 39 | } // end namespace internal |
| 40 | } // end namespace ast_matchers |
| 41 | } // end namespace clang |