-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathast.v
More file actions
396 lines (339 loc) · 8.13 KB
/
ast.v
File metadata and controls
396 lines (339 loc) · 8.13 KB
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
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
// 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 MapVal = ArrayType
| FuncType
| Ident
| InterfaceType
| MapType
| SelectorExpr
| StarExpr
| StructType
type Expr = InvalidExpr
| ArrayType
| BasicLit
| BinaryExpr
| CallExpr
| ChanType
| CompositeLit
| Ellipsis
| FuncLit
| FuncType
| Ident
| IndexExpr
| InterfaceType
| KeyValueExpr
| MapType
| ParenExpr
| SelectorExpr
| SliceExpr
| StarExpr
| StructType
| TypeAssertExpr
| UnaryExpr
type Stmt = InvalidStmt
| AssignStmt
| BlockStmt
| BranchStmt
| CaseClause
| DeclStmt
| DeferStmt
| ExprStmt
| ForStmt
| GoStmt
| IfStmt
| IncDecStmt
| LabeledStmt
| RangeStmt
| ReturnStmt
| SendStmt
| SwitchStmt
| TypeSwitchStmt
struct InvalidExpr {}
struct InvalidStmt {}
type Specs = ImportSpec | TypeSpec | ValueSpec
type Type = InvalidExpr
| ArrayType
| ChanType
| Ellipsis
| FuncType
| Ident
| InterfaceType
| MapType
| SelectorExpr
| StarExpr
| StructType
struct ArrayType {
node_type string @[json: '_type']
len Expr @[json: 'Len']
elt Expr @[json: 'Elt']
}
struct AssignStmt {
node_type string @[json: '_type']
lhs []Expr @[json: 'Lhs']
rhs []Expr @[json: 'Rhs']
tok string @[json: 'Tok']
}
struct BasicLit {
node_type string @[json: '_type']
kind string @[json: 'Kind']
value string @[json: 'Value']
}
struct BinaryExpr {
node_type string @[json: '_type']
x Expr @[json: 'X']
op string @[json: 'Op']
y Expr @[json: 'Y']
}
struct BlockStmt {
node_type string @[json: '_type']
list []Stmt @[json: 'List']
}
struct BranchStmt {
node_type string @[json: '_type']
tok string @[json: 'Tok']
label Ident @[json: 'Label'] // only for `goto`
}
struct CallExpr {
node_type string @[json: '_type']
fun Expr @[json: 'Fun']
args []Expr @[json: 'Args']
}
struct CaseClause {
node_type string @[json: '_type']
list []Expr @[json: 'List']
body []Stmt @[json: 'Body']
}
struct ChanType {
node_type string @[json: '_type']
dir string @[json: 'Dir']
value Expr @[json: 'Value']
}
struct CompositeLit {
node_type string @[json: '_type']
typ Expr @[json: 'Type']
elts []Expr @[json: 'Elts']
}
struct DeclStmt {
node_type string @[json: '_type']
decl Decls @[json: 'Decl']
}
struct DeferStmt {
node_type string @[json: '_type']
call Expr @[json: 'Call']
}
struct Doc {
list []struct {
text string @[json: 'Text']
} @[json: 'List']
}
struct Ellipsis {
node_type string @[json: '_type']
elt Ident @[json: 'Elt']
}
struct ExprStmt {
node_type string @[json: '_type']
x Expr @[json: 'X']
}
struct Field {
node_type string @[json: '_type']
names []Ident @[json: 'Names']
typ Type @[json: 'Type']
doc Doc @[json: 'Doc']
}
struct FieldList {
list []Field @[json: 'List']
}
struct ForStmt {
node_type string @[json: '_type']
init AssignStmt @[json: 'Init']
cond Expr @[json: 'Cond']
post Stmt @[json: 'Post']
body BlockStmt @[json: 'Body']
}
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 FuncLit {
node_type string @[json: '_type']
typ FuncType @[json: 'Type']
body BlockStmt @[json: 'Body']
}
struct FuncType {
node_type string @[json: '_type']
params FieldList @[json: 'Params']
results FieldList @[json: 'Results']
}
struct GenDecl {
node_type string @[json: '_type']
doc Doc @[json: 'Doc']
tok string @[json: 'Tok']
specs []Specs @[json: 'Specs']
}
struct GoFile {
package_name Ident @[json: 'Name']
decls []Decls @[json: 'Decls']
}
struct GoStmt {
node_type string @[json: '_type']
call Expr @[json: 'Call']
}
struct Ident {
node_type string @[json: '_type']
name string @[json: 'Name']
}
struct IfStmt {
node_type string @[json: '_type']
cond Expr @[json: 'Cond']
init AssignStmt @[json: 'Init']
body BlockStmt @[json: 'Body']
else_ Stmt @[json: 'Else']
}
struct ImportSpec {
node_type string @[json: '_type']
name Ident @[json: 'Name']
path BasicLit @[json: 'Path']
}
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']
}
struct InterfaceType {
node_type string @[json: '_type']
methods FieldList @[json: 'Methods']
}
struct KeyValueExpr {
key Expr @[json: 'Key']
value Expr @[json: 'Value']
node_type string @[json: '_type']
}
struct LabeledStmt {
node_type string @[json: '_type']
label Ident @[json: 'Label']
stmt Stmt @[json: 'Stmt']
}
struct MapType {
node_type string @[json: '_type']
key Expr @[json: 'Key']
val MapVal @[json: 'Value']
}
struct ParenExpr {
node_type string @[json: '_type']
x Expr @[json: 'X']
}
// `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 ReturnStmt {
node_type string @[json: '_type']
results []Expr @[json: 'Results']
}
struct SelectorExpr {
node_type string @[json: '_type']
sel Ident @[json: 'Sel']
x Expr @[json: 'X']
}
struct SendStmt {
node_type string @[json: '_type']
chan_ Expr @[json: 'Chan']
value Expr @[json: 'Value']
}
struct SliceExpr {
node_type string @[json: '_type']
x Expr @[json: 'X']
low Expr @[json: 'Low']
high Expr @[json: 'High']
}
struct StarExpr {
node_type string @[json: '_type']
x Expr @[json: 'X']
}
struct StructType {
node_type string @[json: '_type']
fields FieldList @[json: 'Fields']
incomplete bool @[json: 'Incomplete']
}
struct SwitchStmt {
node_type string @[json: '_type']
init AssignStmt @[json: 'Init']
tag Expr @[json: 'Tag']
body BlockStmt @[json: 'Body']
}
struct TypeAssertExpr {
node_type string @[json: '_type']
x Expr @[json: 'X']
typ Type @[json: 'Type']
}
struct TypeSpec {
node_type string @[json: '_type']
name Ident @[json: 'Name']
params FieldList @[json: 'TypeParams']
typ Type @[json: 'Type']
}
struct TypeSwitchStmt {
node_type string @[json: '_type']
assign Stmt @[json: 'Assign'] // Can be AssignStmt or ExprStmt
// tag Expr @[json: 'Tag']
body BlockStmt @[json: 'Body']
}
struct UnaryExpr {
node_type string @[json: '_type']
x Expr @[json: 'X']
op string @[json: 'Op']
}
struct ValueSpec {
node_type string @[json: '_type']
names []Ident @[json: 'Names']
typ Type @[json: 'Type']
values []Expr @[json: 'Values']
}
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 }
ChanType { return e.node_type }
CompositeLit { return e.node_type }
Ellipsis { return e.node_type }
FuncLit { return e.node_type }
FuncType { return e.node_type }
Ident { return e.node_type }
IndexExpr { return e.node_type }
InterfaceType { 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 }
StructType { return e.node_type }
TypeAssertExpr { return e.node_type }
UnaryExpr { return e.node_type }
}
return 'unknown node type'
}