-
Notifications
You must be signed in to change notification settings - Fork 2
/
stmt.go
209 lines (171 loc) · 3.87 KB
/
stmt.go
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
package tlps
type Stmt interface {
Accept(VisitorStmt) (interface{}, error)
IsType(interface{}) bool
}
type VisitorStmt interface {
visitBlockStmt(*Block) (interface{}, error)
visitClassStmt(*Class) (interface{}, error)
visitExpressionStmt(*Expression) (interface{}, error)
visitFunctionStmt(*Function) (interface{}, error)
visitIfStmt(*If) (interface{}, error)
visitIncludeStmt(*Include) (interface{}, error)
visitReturnStmt(*Return) (interface{}, error)
visitVarStmt(*Var) (interface{}, error)
visitWhileStmt(*While) (interface{}, error)
}
type Block struct {
Statements []Stmt
Keyword *Token
Typ BlockType
}
func NewBlock(statements []Stmt, keyword *Token, typ BlockType) Stmt {
return &Block{statements, keyword, typ}
}
func (b *Block) Accept(visitor VisitorStmt) (interface{}, error) {
return visitor.visitBlockStmt(b)
}
func (rec *Block) IsType(v interface{}) bool {
switch v.(type) {
case *Block:
return true
}
return false
}
type Class struct {
Name *Token
Superclass *Variable
Methods []*Function
}
func NewClass(name *Token, superclass *Variable, methods []*Function) Stmt {
return &Class{name, superclass, methods}
}
func (c *Class) Accept(visitor VisitorStmt) (interface{}, error) {
return visitor.visitClassStmt(c)
}
func (rec *Class) IsType(v interface{}) bool {
switch v.(type) {
case *Class:
return true
}
return false
}
type Expression struct {
Expression Expr
}
func NewExpression(expression Expr) Stmt {
return &Expression{expression}
}
func (e *Expression) Accept(visitor VisitorStmt) (interface{}, error) {
return visitor.visitExpressionStmt(e)
}
func (rec *Expression) IsType(v interface{}) bool {
switch v.(type) {
case *Expression:
return true
}
return false
}
type Function struct {
Name *Token
Params []*Token
Body []Stmt
}
func NewFunction(name *Token, params []*Token, body []Stmt) Stmt {
return &Function{name, params, body}
}
func (f *Function) Accept(visitor VisitorStmt) (interface{}, error) {
return visitor.visitFunctionStmt(f)
}
func (rec *Function) IsType(v interface{}) bool {
switch v.(type) {
case *Function:
return true
}
return false
}
type If struct {
Condition Expr
ThenBranch Stmt
ElseBranch Stmt
}
func NewIf(condition Expr, thenBranch Stmt, elseBranch Stmt) Stmt {
return &If{condition, thenBranch, elseBranch}
}
func (i *If) Accept(visitor VisitorStmt) (interface{}, error) {
return visitor.visitIfStmt(i)
}
func (rec *If) IsType(v interface{}) bool {
switch v.(type) {
case *If:
return true
}
return false
}
type Include struct {
Path *Token
}
func NewInclude(path *Token) Stmt {
return &Include{path}
}
func (i *Include) Accept(visitor VisitorStmt) (interface{}, error) {
return visitor.visitIncludeStmt(i)
}
func (rec *Include) IsType(v interface{}) bool {
switch v.(type) {
case *Include:
return true
}
return false
}
type Return struct {
Keyword *Token
Value Expr
}
func NewReturn(keyword *Token, value Expr) Stmt {
return &Return{keyword, value}
}
func (r *Return) Accept(visitor VisitorStmt) (interface{}, error) {
return visitor.visitReturnStmt(r)
}
func (rec *Return) IsType(v interface{}) bool {
switch v.(type) {
case *Return:
return true
}
return false
}
type Var struct {
Name *Token
Initializer Expr
}
func NewVar(name *Token, initializer Expr) Stmt {
return &Var{name, initializer}
}
func (v *Var) Accept(visitor VisitorStmt) (interface{}, error) {
return visitor.visitVarStmt(v)
}
func (rec *Var) IsType(v interface{}) bool {
switch v.(type) {
case *Var:
return true
}
return false
}
type While struct {
Condition Expr
Body Stmt
}
func NewWhile(condition Expr, body Stmt) Stmt {
return &While{condition, body}
}
func (w *While) Accept(visitor VisitorStmt) (interface{}, error) {
return visitor.visitWhileStmt(w)
}
func (rec *While) IsType(v interface{}) bool {
switch v.(type) {
case *While:
return true
}
return false
}