-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathproduction.cpp
74 lines (44 loc) · 961 Bytes
/
production.cpp
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#include "production.h"
namespace pratt {
namespace production {
// class Production
// class Terminal
Terminal::Terminal(int v)
: Value(v) {
}
int Terminal::Evaluate() {
return Value;
}
// class InfixOp
InfixOp::InfixOp(Production* lhs, Production* rhs)
: Left(lhs), Right (rhs) {
}
// class Mul
Mul::Mul(Production* lhs, Production* rhs)
: InfixOp(lhs, rhs) {
}
int Mul::Evaluate() {
return Left->Evaluate() * Right->Evaluate();
}
// class Div
Div::Div(Production* lhs, Production* rhs)
: InfixOp(lhs, rhs) {
}
int Div::Evaluate() {
return Left->Evaluate() / Right->Evaluate();
}
// class Add
Add::Add(Production* lhs, Production* rhs)
: InfixOp(lhs, rhs) {
}
int Add::Evaluate() {
return Left->Evaluate() + Right->Evaluate();
}
// class Sub
Sub::Sub(Production* lhs, Production* rhs)
: InfixOp(lhs, rhs) {
}
int Sub::Evaluate() {
return Left->Evaluate() - Right->Evaluate();
}
}} // namespace pratt::production