sapphire/src/AST/StatementNode.h

11 lines
199 B
C
Raw Normal View History

2022-06-02 16:25:01 +00:00
#pragma once
#include "ExprNode.h"
class StatementNode : public ASTNode
{
std::shared_ptr<ExprNode> child;
2022-06-14 14:29:51 +00:00
public:
2022-06-02 16:25:01 +00:00
StatementNode(std::shared_ptr<ExprNode> child);
~StatementNode();
};