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
19 lines
383 B
C++
19 lines
383 B
C++
#ifndef POLSERVER_PROGRAMBUILDER_H
|
|
#define POLSERVER_PROGRAMBUILDER_H
|
|
|
|
#include "compiler/astbuilder/CompoundStatementBuilder.h"
|
|
|
|
namespace Pol::Bscript::Compiler
|
|
{
|
|
|
|
class ProgramBuilder : public CompoundStatementBuilder
|
|
{
|
|
public:
|
|
ProgramBuilder( const SourceFileIdentifier&, BuilderWorkspace& );
|
|
|
|
};
|
|
|
|
|
|
} // namespace Pol::Bscript::Compiler
|
|
|
|
#endif // POLSERVER_PROGRAMBUILDER_H
|