#ifndef POLSERVER_LOOPSTATEMENT_H #define POLSERVER_LOOPSTATEMENT_H #include "bscript/compiler/ast/LabelableStatement.h" namespace Pol::Bscript::Compiler { class FlowControlLabel; class LoopStatement : public LabelableStatement { public: LoopStatement( const SourceLocation& source_location, std::string label ); const std::shared_ptr break_label; const std::shared_ptr continue_label; }; } // namespace Pol::Bscript::Compiler #endif // POLSERVER_LOOPSTATEMENT_H