mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
Add astbuilder/BuilderWorkspace: - Temporary workspace used while building the AST (which goes in the CompilerWorkspace) Add astbuilder/CompilerWorkspaceBuilder: - Builds a CompilerWorkspace for a script Add model/CompilerWorkspace: - Holds AST - Holds some intermediate data used by semantic analyzer, optimizer, code generator
19 lines
330 B
C++
19 lines
330 B
C++
#include "CompilerWorkspace.h"
|
|
|
|
#include <utility>
|
|
|
|
#include "compiler/file/SourceFileIdentifier.h"
|
|
|
|
namespace Pol
|
|
{
|
|
namespace Bscript
|
|
{
|
|
namespace Compiler
|
|
{
|
|
CompilerWorkspace::CompilerWorkspace() = default;
|
|
|
|
CompilerWorkspace::~CompilerWorkspace() = default;
|
|
|
|
} // namespace Compiler
|
|
} // namespace Bscript
|
|
} // namespace Pol
|