aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/include/expression.hpp
blob: b9d233979f8c6f89f9e25f8f767ef03575e734ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef AST_EXPRESSION_HPP
#define AST_EXPRESSION_HPP

#include "ast.hpp"

class Expression : public Node {
private:
public:
    Expression(const Node* expr = new EmptyNode);

    virtual void printasm() const override;
};

#endif