mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
20 lines
502 B
C++
20 lines
502 B
C++
#ifndef POLSERVER_PROGRAMBUILDER_H
|
|
#define POLSERVER_PROGRAMBUILDER_H
|
|
|
|
#include "bscript/compiler/astbuilder/CompoundStatementBuilder.h"
|
|
|
|
namespace Pol::Bscript::Compiler
|
|
{
|
|
class Program;
|
|
|
|
class ProgramBuilder : public CompoundStatementBuilder
|
|
{
|
|
public:
|
|
ProgramBuilder( const SourceFileIdentifier&, BuilderWorkspace& );
|
|
|
|
std::unique_ptr<Program> program( EscriptGrammar::EscriptParser::ProgramDeclarationContext* );
|
|
};
|
|
|
|
} // namespace Pol::Bscript::Compiler
|
|
|
|
#endif // POLSERVER_PROGRAMBUILDER_H
|