top | up | prev | next

BoundGotoDefaultStatement Class

Definition at line 226 of BoundStatement.hpp

Constructors

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

Member Functions

void Accept(BoundNodeVisitor& visitor) override

Constructor Details

BoundGotoDefaultStatement Constructor

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

Definition at line 240 of BoundStatement.cpp :
240 : BoundStatement(span_moduleId_BoundNodeType::boundGotoDefaultStatement)
241 {
242 }


Declaration at line 229 of BoundStatement.hpp


Member Function Details

Accept Member Function

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

Definition at line 244 of BoundStatement.cpp :
245 {
246     visitor.Visit(*this);
247 }


Declaration at line 230 of BoundStatement.hpp

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

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


top | up | prev | next