mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
* update grammar * implementation * formatting * executor implementation, tests * docs, core-changes * fix warning introduced in #760 * add format option FormatterEllipsisSpacing * update core-changes
21 lines
489 B
C++
21 lines
489 B
C++
#ifndef POLSERVER_STRUCTINITIALIZER_H
|
|
#define POLSERVER_STRUCTINITIALIZER_H
|
|
|
|
#include "bscript/compiler/ast/Expression.h"
|
|
|
|
namespace Pol::Bscript::Compiler
|
|
{
|
|
|
|
class StructInitializer : public Expression
|
|
{
|
|
public:
|
|
StructInitializer( const SourceLocation& source_location, std::vector<std::unique_ptr<Node>> );
|
|
|
|
void accept( NodeVisitor& ) override;
|
|
void describe_to( std::string& ) const override;
|
|
};
|
|
|
|
} // namespace Pol::Bscript::Compiler
|
|
|
|
|
|
#endif // POLSERVER_STRUCTINITIALIZER_H
|