Bond 0.9
C++ Bond Runtime Library API Documentation
Loading...
Searching...
No Matches
Bond::ExpressionStatement Class Reference

Represents a statement that evaluates an expression. More...

#include <bond/compiler/parsenodes.h>

Inheritance diagram for Bond::ExpressionStatement:
Bond::ListParseNode Bond::ParseNode

Public Member Functions

 ExpressionStatement (Expression *expression)
 Constructs an expression statement.
virtual ~ExpressionStatement ()
virtual void Accept (ParseNodeVisitor &visitor) override
 Dispatches this node to the given visitor.
virtual void Accept (ParseNodeVisitor &visitor) const override
 Dispatches this node to the given visitor.
virtual const TokenGetContextToken () const override
 Returns the token used as source context for diagnostics.
ExpressionGetExpression ()
 Returns the statement expression.
const ExpressionGetExpression () const
 Returns the statement expression.
Public Member Functions inherited from Bond::ListParseNode
virtual ~ListParseNode ()
ListParseNodeGetNextNode ()
 Returns the next node in the list.
const ListParseNodeGetNextNode () const
 Returns the next node in the list.
void SetNextNode (ListParseNode *next)
 Sets the next node in the list.
Public Member Functions inherited from Bond::ParseNode
virtual ~ParseNode ()

Additional Inherited Members

Protected Member Functions inherited from Bond::ListParseNode
 ListParseNode ()
Protected Member Functions inherited from Bond::ParseNode
 ParseNode ()

Detailed Description

Represents a statement that evaluates an expression.

Constructor & Destructor Documentation

◆ ExpressionStatement()

Bond::ExpressionStatement::ExpressionStatement ( Expression * expression)
inlineexplicit

Constructs an expression statement.

Parameters
expressionExpression to evaluate, or null for empty statements.

◆ ~ExpressionStatement()

virtual Bond::ExpressionStatement::~ExpressionStatement ( )
inlinevirtual

Member Function Documentation

◆ Accept() [1/2]

virtual void Bond::ExpressionStatement::Accept ( ParseNodeVisitor & visitor) const
inlineoverridevirtual

Dispatches this node to the given visitor.

Parameters
visitorVisitor that handles this node type.

Implements Bond::ParseNode.

◆ Accept() [2/2]

virtual void Bond::ExpressionStatement::Accept ( ParseNodeVisitor & visitor)
inlineoverridevirtual

Dispatches this node to the given visitor.

Parameters
visitorVisitor that handles this node type.

Implements Bond::ParseNode.

◆ GetContextToken()

virtual const Token * Bond::ExpressionStatement::GetContextToken ( ) const
inlineoverridevirtual

Returns the token used as source context for diagnostics.

Returns
A token associated with this node, or null if no token applies.

Implements Bond::ParseNode.

◆ GetExpression() [1/2]

Expression * Bond::ExpressionStatement::GetExpression ( )
inline

Returns the statement expression.

◆ GetExpression() [2/2]

const Expression * Bond::ExpressionStatement::GetExpression ( ) const
inline

Returns the statement expression.


The documentation for this class was generated from the following file:
  • include/bond/compiler/parsenodes.h