clang
9.0.0
|
A node that has children and represents a syntactic language construct. More...
#include "clang/Tooling/Syntax/Tree.h"
Public Member Functions | |
Node * | firstChild () |
const Node * | firstChild () const |
![]() | |
Node (NodeKind Kind) | |
Newly created nodes are detached from a tree, parent and sibling links are set when the node is added as a child to another one. More... | |
NodeKind | kind () const |
NodeRole | role () const |
const Tree * | parent () const |
Tree * | parent () |
const Node * | nextSibling () const |
Node * | nextSibling () |
std::string | dump (const Arena &A) const |
Dumps the structure of a subtree. For debugging and testing purposes. More... | |
std::string | dumpTokens (const Arena &A) const |
Dumps the tokens forming this subtree. More... | |
Static Public Member Functions | |
static bool | classof (const Node *N) |
Protected Member Functions | |
syntax::Node * | findChild (NodeRole R) |
Find the first node with a corresponding role. More... | |
Friends | |
class | TreeBuilder |
A node that has children and represents a syntactic language construct.
Definition at line 45 of file Tree.cpp.
References clang::syntax::Detached, clang::syntax::Node::dumpTokens(), clang::syntax::Node::kind(), clang::syntax::Leaf, and clang::syntax::Node::role().
|
protected |
Find the first node with a corresponding role.
Definition at line 143 of file Tree.cpp.
Referenced by clang::syntax::CompoundStatement::lbrace(), and clang::syntax::CompoundStatement::rbrace().