top | up | prev | next

BoundContinueStatement Class

Definition at line 240 of BoundStatement.hpp

Constructors

BoundContinueStatement(const Span& span_, const boost::uuids::uuid& moduleId_)

Member Functions

void Accept(BoundNodeVisitor& visitor) override

Constructor Details

BoundContinueStatement Constructor

cmajor::binder::BoundContinueStatement::BoundContinueStatement(const Span& span_, const boost::uuids::uuid& moduleId_)

Definition at line 258 of BoundStatement.cpp :
258 : BoundStatement(span_moduleId_BoundNodeType::boundContinueStatement)
259 {
260 }


Declaration at line 243 of BoundStatement.hpp


Member Function Details

Accept Member Function

void cmajor::binder::BoundContinueStatement::Accept(BoundNodeVisitor & visitor) override

Definition at line 262 of BoundStatement.cpp :
263 {
264     visitor.Visit(*this);
265 }


Declaration at line 244 of BoundStatement.hpp

Base class overridden functions: cmajor::binder::BoundNode::Accept

Calls: cmajor::binder::BoundNodeVisitor::Visit


top | up | prev | next