polserver/pol-core/bscript/compiler/astbuilder/ProgramBuilder.cpp

12 lines
320 B
C++
Raw Permalink Normal View History

#include "ProgramBuilder.h"
namespace Pol::Bscript::Compiler
{
ProgramBuilder::ProgramBuilder( const SourceFileIdentifier& source_file_identifier,
BuilderWorkspace& workspace )
: CompoundStatementBuilder( source_file_identifier, workspace )
{
}
} // namespace Pol::Bscript::Compiler