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