mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
* Add astbuilder/TreeBuilder * Add astbuilder/ValueBuilder * Add astbuilder/ExpressionBuilder * Add astbuilder/ SimpleStatementBuilder * Add astbuilder/CompoundStatementBuilder * Add ModuleDeclarationBuilder * Add ProgramBuilder * Add UserFunctionBuilder
11 lines
345 B
C++
11 lines
345 B
C++
#include "UserFunctionBuilder.h"
|
|
|
|
namespace Pol::Bscript::Compiler
|
|
{
|
|
UserFunctionBuilder::UserFunctionBuilder( const SourceFileIdentifier& source_file_identifier,
|
|
BuilderWorkspace& workspace )
|
|
: CompoundStatementBuilder( source_file_identifier, workspace )
|
|
{
|
|
}
|
|
|
|
} // namespace Pol::Bscript::Compiler
|