This repository has been archived by the owner on Jun 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
astflow.go
164 lines (153 loc) · 2.85 KB
/
astflow.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
package main
import "fmt"
type ifNode struct {
condition node
ifBranch node
elseBranch node
}
func (n *ifNode) execute() (interface{}, error) {
val, err := n.condition.execute()
if err != nil {
return nil, err
}
condition, ok := val.(bool)
if !ok {
return nil, fmt.Errorf("condition should be a boolean")
}
if condition {
_, err := n.ifBranch.execute()
if err != nil {
return nil, err
}
} else {
if n.elseBranch != nil {
_, err := n.elseBranch.execute()
if err != nil {
return nil, err
}
}
}
return nil, nil
}
type whileNode struct {
condition node
body node
}
func (n *whileNode) execute() (interface{}, error) {
for {
val, err := n.condition.execute()
if err != nil {
return nil, err
}
condition, ok := val.(bool)
if !ok {
return nil, fmt.Errorf("condition should be a boolean")
}
if !condition {
break
}
_, err = n.body.execute()
if err != nil {
return nil, err
}
}
return nil, nil
}
type forNode struct {
init node
condition node
incrementor node
body node
}
func (n *forNode) execute() (interface{}, error) {
_, err := n.init.execute()
if err != nil {
return nil, err
}
for {
val, err := n.condition.execute()
if err != nil {
return nil, err
}
condition, ok := val.(bool)
if !ok {
return nil, fmt.Errorf("condition should be a boolean")
}
if !condition {
break
}
_, err = n.body.execute()
if err != nil {
return nil, err
}
_, err = n.incrementor.execute()
if err != nil {
return nil, err
}
}
return nil, nil
}
type forArrayNode struct {
variable string
arr node
body node
}
func (n *forArrayNode) execute() (interface{}, error) {
val, err := n.arr.execute()
if err != nil {
return nil, err
}
arr, ok := val.([]interface{})
if !ok {
return nil, fmt.Errorf("only an array can be iterated")
}
for _, v := range arr {
_, err := (&assignNode{n.variable, &valueNode{v}}).execute()
if err != nil {
return nil, err
}
_, err = n.body.execute()
if err != nil {
return nil, err
}
}
return nil, nil
}
type forRangeNode struct {
variable string
start node
end node
body node
}
func (n *forRangeNode) execute() (interface{}, error) {
startAny, err := n.start.execute()
if err != nil {
return nil, err
}
start, ok := startAny.(int)
if !ok {
return nil, fmt.Errorf("start index should be an integer")
}
endAny, err := n.end.execute()
if err != nil {
return nil, err
}
end, ok := endAny.(int)
if !ok {
return nil, fmt.Errorf("end index should be an integer")
}
if start > end {
return nil, fmt.Errorf("start index should be lower than end index")
}
for i := start; i <= end; i++ {
_, err := (&assignNode{n.variable, &intLeaf{i}}).execute()
if err != nil {
return nil, err
}
_, err = n.body.execute()
if err != nil {
return nil, err
}
}
return nil, nil
}