-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExpr.cpp
More file actions
51 lines (39 loc) · 1021 Bytes
/
Expr.cpp
File metadata and controls
51 lines (39 loc) · 1021 Bytes
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
#include "FwdTypes.hpp"
#include "Expr.hpp"
#include "visitor/ExprVisitor.hpp"
Value ExprAssign::accept(const ExprVisitor& v) const {
return v(*this);
}
Value ExprBinary::accept(const ExprVisitor& v) const {
return v(*this);
}
Value ExprCall::accept(const ExprVisitor& v) const {
return v(*this);
}
Value ExprGet::accept(const ExprVisitor& v) const {
return v(*this);
}
Value ExprGrouping::accept(const ExprVisitor& v) const {
return v(*this);
}
Value ExprLiteral::accept(const ExprVisitor& v) const {
return v(*this);
}
Value ExprLogical::accept(const ExprVisitor& v) const {
return v(*this);
}
Value ExprSet::accept(const ExprVisitor& v) const {
return v(*this);
}
Value ExprSuper::accept(const ExprVisitor& v) const {
return v(*this);
}
Value ExprThis::accept(const ExprVisitor& v) const {
return v(*this);
}
Value ExprUnary::accept(const ExprVisitor& v) const {
return v(*this);
}
Value ExprVariable::accept(const ExprVisitor& v) const {
return v(*this);
}