clang 19.0.0git
Public Member Functions | Static Public Member Functions | List of all members
clang::syntax::Leaf Class Referencefinal

A leaf node points to a single token. More...

#include "clang/Tooling/Syntax/Tree.h"

Inheritance diagram for clang::syntax::Leaf:
Inheritance graph
[legend]

Public Member Functions

 Leaf (TokenManager::Key K)
 
TokenManager::Key getTokenKey () const
 
- Public Member Functions inherited from clang::syntax::Node
 Node (const Node &)=delete
 Nodes cannot simply be copied without violating tree invariants.
 
Nodeoperator= (const Node &)=delete
 
 Node (Node &&)=delete
 Idiomatically, nodes are allocated on an Arena and never moved.
 
Nodeoperator= (Node &&)=delete
 
NodeKind getKind () const
 
NodeRole getRole () const
 
bool isDetached () const
 Whether the node is detached from a tree, i.e. does not have a parent.
 
bool isOriginal () const
 Whether the node was created from the AST backed by the source code rather than added later through mutation APIs or created with factory functions.
 
bool canModify () const
 If this function return false, the tree cannot be modified because there is no reasonable way to produce the corresponding textual replacements.
 
const TreegetParent () const
 
TreegetParent ()
 
const NodegetNextSibling () const
 
NodegetNextSibling ()
 
const NodegetPreviousSibling () const
 
NodegetPreviousSibling ()
 
std::string dump (const TokenManager &SM) const
 Dumps the structure of a subtree. For debugging and testing purposes.
 
std::string dumpTokens (const TokenManager &SM) const
 Dumps the tokens forming this subtree.
 
void assertInvariants () const
 Asserts invariants on this node of the tree and its immediate children.
 
void assertInvariantsRecursive () const
 Runs checkInvariants on all nodes in the subtree. No-op if NDEBUG is set.
 

Static Public Member Functions

static bool classof (const Node *N)
 

Additional Inherited Members

- Protected Member Functions inherited from clang::syntax::Node
 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.
 
 ~Node ()=default
 Nodes are allocated on Arenas; the destructor is never called.
 

Detailed Description

A leaf node points to a single token.

Definition at line 132 of file Tree.h.

Constructor & Destructor Documentation

◆ Leaf()

syntax::Leaf::Leaf ( TokenManager::Key  K)

Definition at line 35 of file Tree.cpp.

Member Function Documentation

◆ classof()

static bool clang::syntax::Leaf::classof ( const Node N)
static

◆ getTokenKey()

TokenManager::Key clang::syntax::Leaf::getTokenKey ( ) const
inline

Definition at line 137 of file Tree.h.


The documentation for this class was generated from the following files: