polserver/pol-core/bscript/compiler/ast/FormatExpression.h
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

23 lines
590 B
C++

#ifndef POLSERVER_FORMATEXPRESSION_H
#define POLSERVER_FORMATEXPRESSION_H
#include "bscript/compiler/ast/Expression.h"
namespace Pol::Bscript::Compiler
{
class NodeVisitor;
class StringValue;
class FormatExpression : public Expression
{
public:
FormatExpression( const SourceLocation& source_location, std::unique_ptr<Expression> expression,
std::unique_ptr<StringValue> format );
void accept( NodeVisitor& visitor ) override;
void describe_to( std::string& ) const override;
};
} // namespace Pol::Bscript::Compiler
#endif // POLSERVER_FORMATEXPRESSION_H