clang  10.0.0git
Public Member Functions | Static Public Member Functions | List of all members
clang::syntax::StaticAssertDeclaration Class Referencefinal

static_assert(<condition>, <message>) static_assert(<condition>) More...

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

Inheritance diagram for clang::syntax::StaticAssertDeclaration:
[legend]
Collaboration diagram for clang::syntax::StaticAssertDeclaration:
[legend]

Public Member Functions

 StaticAssertDeclaration ()
 
syntax::Expressioncondition ()
 
syntax::Expressionmessage ()
 
- Public Member Functions inherited from clang::syntax::Declaration
 Declaration (NodeKind K)
 
- Public Member Functions inherited from clang::syntax::Tree
NodefirstChild ()
 
const NodefirstChild () const
 
LeaffirstLeaf ()
 
const LeaffirstLeaf () const
 
LeaflastLeaf ()
 
const LeaflastLeaf () const
 
- Public 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. More...
 
NodeKind kind () const
 
NodeRole role () const
 
bool isDetached () const
 Whether the node is detached from a tree, i.e. does not have a parent. More...
 
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. More...
 
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. More...
 
const Treeparent () const
 
Treeparent ()
 
const NodenextSibling () const
 
NodenextSibling ()
 
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...
 
void assertInvariants () const
 Asserts invariants on this node of the tree and its immediate children. More...
 
void assertInvariantsRecursive () const
 Runs checkInvariants on all nodes in the subtree. No-op if NDEBUG is set. More...
 

Static Public Member Functions

static bool classof (const Node *N)
 
- Static Public Member Functions inherited from clang::syntax::Declaration
static bool classof (const Node *N)
 
- Static Public Member Functions inherited from clang::syntax::Tree
static bool classof (const Node *N)
 

Additional Inherited Members

- Protected Member Functions inherited from clang::syntax::Tree
syntax::NodefindChild (NodeRole R)
 Find the first node with a corresponding role. More...
 

Detailed Description

static_assert(<condition>, <message>) static_assert(<condition>)

Definition at line 348 of file Nodes.h.

Constructor & Destructor Documentation

◆ StaticAssertDeclaration()

clang::syntax::StaticAssertDeclaration::StaticAssertDeclaration ( )
inline

Definition at line 350 of file Nodes.h.

Member Function Documentation

◆ classof()

static bool clang::syntax::StaticAssertDeclaration::classof ( const Node N)
inlinestatic

Definition at line 351 of file Nodes.h.

References clang::syntax::Node::kind(), and clang::syntax::StaticAssertDeclaration.

◆ condition()

syntax::Expression * syntax::StaticAssertDeclaration::condition ( )

◆ message()

syntax::Expression * syntax::StaticAssertDeclaration::message ( )

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