-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrammar.hpp
48 lines (41 loc) · 1.02 KB
/
grammar.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#ifndef _GRAMMAR_HPP_
#define _GRAMMAR_HPP_ 1
#include "includes.hpp"
#include "token.hpp"
enum ExpressionType {
CONST_E,
BINARYOP_E,
NEG_E
};
class Expression {
public:
virtual inline ExpressionType getType() { return this->type; }
protected:
ExpressionType type;
};
class Const_E: public Expression {
public:
Const_E(int value);
inline int getValue() { return this->value; }
private:
int value;
};
class BinaryOp_E: public Expression {
public:
BinaryOp_E(Expression* leftExpr, Expression* rightExpr, Operation operation);
inline Expression* getLeftExpr() { return this->leftExpr; }
inline Expression* getRightExpr() { return this->rightExpr; }
inline Operation getOperation() { return this->operation; }
private:
Operation operation;
Expression* leftExpr;
Expression* rightExpr;
};
class Neg_E: public Expression {
public:
Neg_E(Expression* expression);
inline Expression* getExpr() { return this->expression; };
private:
Expression* expression;
};
#endif