mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
Add: - FunctionBody - Program - ProgramParameterDeclaration - ProgramParameterList Build AST for program sections and generate code for it
14 lines
389 B
C++
14 lines
389 B
C++
#include "CompilerWorkspace.h"
|
|
|
|
#include "compiler/ast/ModuleFunctionDeclaration.h"
|
|
#include "compiler/ast/Program.h"
|
|
#include "compiler/ast/TopLevelStatements.h"
|
|
#include "compiler/file/SourceFileIdentifier.h"
|
|
|
|
namespace Pol::Bscript::Compiler
|
|
{
|
|
CompilerWorkspace::CompilerWorkspace() = default;
|
|
|
|
CompilerWorkspace::~CompilerWorkspace() = default;
|
|
|
|
} // namespace Pol::Bscript::Compiler
|