sapphirec
The Sapphire documentation
StatementNode.h
Go to the documentation of this file.
1 #pragma once
2 #include "ExprNode.h"
3 
4 class StatementNode : public ASTNode
5 {
6  std::shared_ptr<ExprNode> child;
7 
8  public:
9  StatementNode(std::shared_ptr<ExprNode> child);
11 };
Definition: ASTNode.h:5
Definition: StatementNode.h:5
StatementNode(std::shared_ptr< ExprNode > child)
Definition: StatementNode.cpp:3
~StatementNode()
Definition: StatementNode.cpp:7