mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
* 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
22 lines
542 B
C++
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
|