forked from vlang/go2v
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ast.v
366 lines (312 loc) · 7.56 KB
/
ast.v
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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
// Copyright (c) 2024 Alexander Medvednikov. All rights reserved.
// Use of this source code is governed by a GPL license that can be found in the LICENSE file.
import json
import os
type Decls = FuncDecl | GenDecl
type Expr = InvalidExpr
| ArrayType
| FuncType
| BasicLit
| BinaryExpr
| CallExpr
| CompositeLit
| Ellipsis
| FuncLit
| Ident
| IndexExpr
| KeyValueExpr
| MapType
| ParenExpr
| SelectorExpr
| SliceExpr
| StarExpr
| UnaryExpr
| TypeAssertExpr
type Stmt = InvalidStmt
| AssignStmt
| BlockStmt
| BranchStmt
| CaseClause
| DeclStmt
| DeferStmt
| ExprStmt
| ForStmt
| IfStmt
| IncDecStmt
| RangeStmt
| ReturnStmt
| SwitchStmt
| TypeSwitchStmt
| GoStmt
struct InvalidExpr {}
struct InvalidStmt {}
type Specs = ImportSpec | TypeSpec | ValueSpec
type Type = InvalidExpr
| StructType
| ArrayType
| MapType
| FuncType
| InterfaceType
| Ident
| StarExpr
| SelectorExpr
| ChanType
struct GoFile {
package_name Ident @[json: 'Name']
decls []Decls @[json: 'Decls']
}
struct Doc {
list []struct {
text string @[json: 'Text']
} @[json: 'List']
}
struct FuncDecl {
node_type string @[json: '_type']
doc Doc @[json: 'Doc']
recv FieldList @[json: 'Recv']
name Ident @[json: 'Name']
typ FuncType @[json: 'Type']
body BlockStmt @[json: 'Body']
}
struct GenDecl {
node_type string @[json: '_type']
doc Doc @[json: 'Doc']
tok string @[json: 'Tok']
specs []Specs @[json: 'Specs']
}
struct ImportSpec {
node_type string @[json: '_type']
name Ident @[json: 'Name']
path BasicLit @[json: 'Path']
}
struct TypeSpec {
node_type string @[json: '_type']
name Ident @[json: 'Name']
params FieldList @[json: 'TypeParams']
typ Type @[json: 'Type']
}
struct ArrayType {
node_type string @[json: '_type']
len Expr @[json: 'Len']
elt Expr @[json: 'Elt']
}
struct MapType {
node_type string @[json: '_type']
key Expr @[json: 'Key']
val Expr @[json: 'Value']
}
struct ChanType {
node_type string @[json: '_type']
dir string @[json: 'Dir']
value Expr @[json: 'Value']
}
struct Ellipsis {
node_type string @[json: '_type']
elt Ident @[json: 'Elt']
}
struct FuncType {
node_type string @[json: '_type']
params FieldList @[json: 'Params']
results FieldList @[json: 'Results']
}
struct ValueSpec {
node_type string @[json: '_type']
names []Ident @[json: 'Names']
typ Type @[json: 'Type']
values []Expr @[json: 'Values']
}
struct DeclStmt {
node_type string @[json: '_type']
decl Decls @[json: 'Decl']
}
struct BlockStmt {
node_type string @[json: '_type']
list []Stmt @[json: 'List']
}
struct SwitchStmt {
node_type string @[json: '_type']
init AssignStmt @[json: 'Init']
tag Expr @[json: 'Tag']
body BlockStmt @[json: 'Body']
}
struct TypeSwitchStmt {
node_type string @[json: '_type']
assign AssignStmt @[json: 'Assign']
// tag Expr @[json: 'Tag']
body BlockStmt @[json: 'Body']
}
struct CaseClause {
node_type string @[json: '_type']
list []Expr @[json: 'List']
body []Stmt @[json: 'Body']
}
struct IfStmt {
node_type string @[json: '_type']
cond Expr @[json: 'Cond']
init AssignStmt @[json: 'Init']
body BlockStmt @[json: 'Body']
else_ Stmt @[json: 'Else']
}
struct ForStmt {
node_type string @[json: '_type']
init AssignStmt @[json: 'Init']
cond Expr @[json: 'Cond']
post Stmt @[json: 'Post']
body BlockStmt @[json: 'Body']
}
struct ExprStmt {
node_type string @[json: '_type']
x Expr @[json: 'X']
}
struct AssignStmt {
node_type string @[json: '_type']
lhs []Expr @[json: 'Lhs']
rhs []Expr @[json: 'Rhs']
tok string @[json: 'Tok']
}
struct StructType {
node_type string @[json: '_type']
fields FieldList @[json: 'Fields']
incomplete bool @[json: 'Incomplete']
}
struct InterfaceType {
node_type string @[json: '_type']
methods FieldList @[json: 'Methods']
}
struct FieldList {
list []Field @[json: 'List']
}
struct Field {
node_type string @[json: '_type']
names []Ident @[json: 'Names']
typ Type @[json: 'Type']
doc Doc @[json: 'Doc']
}
struct Ident {
node_type string @[json: '_type']
name string @[json: 'Name']
}
struct BasicLit {
node_type string @[json: '_type']
kind string @[json: 'Kind']
value string @[json: 'Value']
}
struct CallExpr {
node_type string @[json: '_type']
fun Expr @[json: 'Fun']
args []Expr @[json: 'Args']
}
struct SelectorExpr {
node_type string @[json: '_type']
sel Ident @[json: 'Sel']
x Expr @[json: 'X']
}
struct CompositeLit {
node_type string @[json: '_type']
typ Expr @[json: 'Type']
elts []Expr @[json: 'Elts']
}
struct BinaryExpr {
node_type string @[json: '_type']
x Expr @[json: 'X']
op string @[json: 'Op']
y Expr @[json: 'Y']
}
struct UnaryExpr {
node_type string @[json: '_type']
x Expr @[json: 'X']
op string @[json: 'Op']
}
struct KeyValueExpr {
key Expr @[json: 'Key']
value Expr @[json: 'Value']
node_type string @[json: '_type']
}
struct IncDecStmt {
node_type string @[json: '_type']
tok string @[json: 'Tok']
x Expr @[json: 'X']
}
struct IndexExpr {
node_type string @[json: '_type']
x Expr @[json: 'X']
index Expr @[json: 'Index']
}
// `for ... := range` loop
struct RangeStmt {
node_type string @[json: '_type']
key Ident @[json: 'Key']
value Ident @[json: 'Value']
tok string @[json: 'Tok']
x Expr @[json: 'X']
body BlockStmt @[json: 'Body']
}
struct ParenExpr {
node_type string @[json: '_type']
x Expr @[json: 'X']
}
struct SliceExpr {
node_type string @[json: '_type']
x Expr @[json: 'X']
low Expr @[json: 'Low']
high Expr @[json: 'High']
}
struct TypeAssertExpr {
node_type string @[json: '_type']
x Expr @[json: 'X']
typ Type @[json: 'Type']
}
struct StarExpr {
node_type string @[json: '_type']
x Expr @[json: 'X']
}
struct DeferStmt {
node_type string @[json: '_type']
call Expr @[json: 'Call']
}
struct ReturnStmt {
node_type string @[json: '_type']
results []Expr @[json: 'Results']
}
struct BranchStmt {
node_type string @[json: '_type']
tok string @[json: 'Tok']
label Ident @[json: 'Label'] // only for `goto`
}
struct FuncLit {
node_type string @[json: '_type']
typ FuncType @[json: 'Type']
body BlockStmt @[json: 'Body']
}
struct GoStmt {
node_type string @[json: '_type']
call Expr @[json: 'Call']
}
fn parse_go_ast(file_path string) !GoFile {
data := os.read_file(file_path)!
return json.decode(GoFile, data)!
}
fn (e Expr) node_type() string {
match e {
InvalidExpr { return 'InvalidExpr' }
ArrayType { return e.node_type }
BasicLit { return e.node_type }
BinaryExpr { return e.node_type }
CallExpr { return e.node_type }
CompositeLit { return e.node_type }
Ellipsis { return e.node_type }
FuncLit { return e.node_type }
Ident { return e.node_type }
IndexExpr { return e.node_type }
KeyValueExpr { return e.node_type }
MapType { return e.node_type }
ParenExpr { return e.node_type }
SelectorExpr { return e.node_type }
StarExpr { return e.node_type }
SliceExpr { return e.node_type }
UnaryExpr { return e.node_type }
FuncType { return e.node_type }
TypeAssertExpr { return e.node_type }
}
return 'unknown node type'
}