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

#include "ast.hpp"

class Expression : public BaseNode {
private:
public:
    Expression() : BaseNode() {}

    virtual void print() const override {}
    virtual void printxml() const override {}
    virtual void printasm() const override {}
};

#endif