MXVM 1.8.1
Virtual Machine, Compiler, and Pascal Frontend
Loading...
Searching...
No Matches
pascal::BreakNode Class Reference

AST node for a break statement. More...

#include <ast.hpp>

Inheritance diagram for pascal::BreakNode:

Public Member Functions

void accept (ASTVisitor &visitor) override
 Accept an ASTVisitor (double-dispatch).
std::string toString () const override
 Return a human-readable description of this node.
 BreakNode ()=default
 BreakNode (std::unique_ptr< ASTNode > e)
Public Member Functions inherited from pascal::ASTNode
virtual ~ASTNode ()=default
virtual void print (std::ostream &out, int indent=0) const
 Pretty-print this node to a stream with indentation.
void setLineNumber (int line)
 Set the originating source line number.
int getLineNumber () const
 Get the originating source line number.

Public Attributes

std::unique_ptr< ASTNodeexpr
 reserved expression (unused)

Detailed Description

AST node for a break statement.

Definition at line 65 of file ast.hpp.

Constructor & Destructor Documentation

◆ BreakNode() [1/2]

pascal::BreakNode::BreakNode ( )
default

◆ BreakNode() [2/2]

pascal::BreakNode::BreakNode ( std::unique_ptr< ASTNode > e)
inlineexplicit

Definition at line 71 of file ast.hpp.

References expr.

Member Function Documentation

◆ accept()

void pascal::BreakNode::accept ( ASTVisitor & visitor)
overridevirtual

Accept an ASTVisitor (double-dispatch).

Implements pascal::ASTNode.

Definition at line 418 of file ast.cpp.

References pascal::ASTVisitor::visit().

◆ toString()

std::string pascal::BreakNode::toString ( ) const
overridevirtual

Return a human-readable description of this node.

Implements pascal::ASTNode.

Definition at line 422 of file ast.cpp.

Member Data Documentation

◆ expr

std::unique_ptr<ASTNode> pascal::BreakNode::expr

reserved expression (unused)

Definition at line 69 of file ast.hpp.

Referenced by BreakNode().


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