mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
* use new formatter for ERROR_PRINT, added ERROR_PRINTLN * remove old log define * fix comments
22 lines
534 B
C++
22 lines
534 B
C++
#ifndef POLSERVER_INTERPOLATESTRING_H
|
|
#define POLSERVER_INTERPOLATESTRING_H
|
|
|
|
#include "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
|