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

22 lines
542 B
C++

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