mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
* all except pol * pol and includes under defines * something weird has happened * remove own folder from include searchpath * fixed remaining, adapted include style for external headers * missing include
14 lines
456 B
C++
14 lines
456 B
C++
#include "bscript/compiler/ast/LoopStatement.h"
|
|
|
|
#include "bscript/compiler/model/FlowControlLabel.h"
|
|
|
|
namespace Pol::Bscript::Compiler
|
|
{
|
|
LoopStatement::LoopStatement( const SourceLocation& source_location, std::string label )
|
|
: LabelableStatement( source_location, std::move( label ) ),
|
|
break_label( std::make_shared<FlowControlLabel>() ),
|
|
continue_label( std::make_shared<FlowControlLabel>() )
|
|
{
|
|
}
|
|
|
|
} // namespace Pol::Bscript::Compiler
|