|
clang
5.0.0
|
Maps string IDs to AST nodes matched by parts of a matcher. More...
#include "clang/ASTMatchers/ASTMatchers.h"
Public Types | |
| typedef internal::BoundNodesMap::IDToNodeMap | IDToNodeMap |
| Type of mapping from binding identifiers to bound nodes. More... | |
Public Member Functions | |
| template<typename T > | |
| const T * | getNodeAs (StringRef ID) const |
Returns the AST node bound to ID. More... | |
| const IDToNodeMap & | getMap () const |
| Retrieve mapping from binding identifiers to bound nodes. More... | |
Friends | |
| class | internal::BoundNodesTreeBuilder |
Maps string IDs to AST nodes matched by parts of a matcher.
The bound nodes are generated by calling bind("id") on the node matchers of the nodes we want to access later.
The instances of BoundNodes are created by MatchFinder when the user's callbacks are executed every time a match is found.
Definition at line 67 of file ASTMatchers.h.
| typedef internal::BoundNodesMap::IDToNodeMap clang::ast_matchers::BoundNodes::IDToNodeMap |
Type of mapping from binding identifiers to bound nodes.
This type is an associative container with a key type of std::string and a value type of clang::ast_type_traits::DynTypedNode
Definition at line 81 of file ASTMatchers.h.
|
inline |
Retrieve mapping from binding identifiers to bound nodes.
Definition at line 84 of file ASTMatchers.h.
Referenced by clang::tooling::ReplaceNodeWithTemplate::run().
|
inline |
Returns the AST node bound to ID.
Returns NULL if there was no node bound to ID or if there is a node but it cannot be converted to the specified type.
Definition at line 74 of file ASTMatchers.h.
References ID.
Referenced by clang::tooling::ReplaceStmtWithText::run(), clang::tooling::ReplaceStmtWithStmt::run(), and clang::tooling::ReplaceIfStmtWithItsBody::run().
|
friend |
Definition at line 95 of file ASTMatchers.h.
1.8.6