polserver/pol-core/bscript/compiler/astbuilder/BuilderWorkspace.cpp
turleypol 1463b76c7c
Includes are now all relative to pol-core basefolder (#906)
* 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
2026-07-25 23:01:18 +02:00

24 lines
833 B
C++

#include "bscript/compiler/astbuilder/BuilderWorkspace.h"
#include "bscript/compiler/ast/Statement.h"
#include "bscript/compiler/file/SourceFile.h"
#include "bscript/compiler/file/SourceFileCache.h"
#include "bscript/compiler/file/SourceFileIdentifier.h"
namespace Pol::Bscript::Compiler
{
BuilderWorkspace::BuilderWorkspace( CompilerWorkspace& compiler_workspace,
SourceFileCache& em_cache, SourceFileCache& inc_cache,
Profile& profile, Report& report )
: compiler_workspace( compiler_workspace ),
em_cache( em_cache ),
inc_cache( inc_cache ),
profile( profile ),
report( report ),
function_resolver( compiler_workspace, report )
{
}
BuilderWorkspace::~BuilderWorkspace() = default;
} // namespace Pol::Bscript::Compiler