aboutsummaryrefslogtreecommitdiff
path: root/src/internal/types/ast.go
blob: 8412f261b7425435bdf22ae7371e39cc89974ce8 (plain)
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
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
// Copyright 2020 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// This file defines a collection of interfaces providing an AST abstraction,
// for use in a type checker that operates on multiple concrete ASTs.

package types

import (
	"go/ast"
	"go/token"
)

type Pos interface {
	IsKnown() bool
	Before(pos Pos) bool
	String() string
}

// Nodes
type (
	Node interface {
		Pos() Pos
	}

	File interface {
		Package() Pos
		Name() Ident

		// TODO: devise a new schema for *Len methods. DeclsLen is too clunky.

		DeclsLen() int
		Decl(i int) Decl

		Node
	}

	FieldList interface {
		Len() int
		Field(i int) Field

		Node
	}

	Field interface {
		NamesLen() int
		Name(i int) Ident
		Type() Expr
		Tag() BasicLit

		Node
	}
)

// Decls
type (
	Decl interface {
		ADecl()
		Node
	}

	BadDecl interface {
		ABadDecl()
		Decl
	}

	GenDecl interface {
		Tok() token.Token
		SpecsLen() int
		Spec(i int) Spec

		AGenDecl()
		Decl
	}

	FuncDecl interface {
		Recv() FieldList
		Name() Ident
		Type() FuncType
		Body() BlockStmt

		AFuncDecl()
		Decl
	}
)

// Specs
type (
	Spec interface {
		ASpec()
		Node
	}

	// TODO: consolidate these specs with decls.

	ValueSpec interface {
		NamesLen() int
		Name(i int) Ident
		Type() Expr
		ValuesLen() int
		Value(i int) Expr

		AValueSpec()
		Spec
	}

	TypeSpec interface {
		Name() Ident
		Assign() Pos
		Type() Expr

		ATypeSpec()
		Spec
	}

	ImportSpec interface {
		Path() BasicLit
		Name() Ident

		AnImportSpec()
		Spec
	}
)

// Exprs
type (
	Expr interface {
		AnExpr()
		Node
	}

	Ident interface {
		Name() string

		AnIdent()
		Expr
	}

	SelectorExpr interface {
		X() Expr
		Sel() Ident

		ASelectorExpr()
		Expr
	}

	BadExpr interface {
		ABadExpr()
		Expr
	}

	DotDotDot interface {
		Elt() Expr

		ADotDotDot()
		Expr
	}

	BasicLit interface {
		Kind() token.Token
		Value() string

		ABasicLit()
		Expr
	}

	FuncLit interface {
		Type() Expr
		Body() BlockStmt

		AFuncLit()
		Expr
	}

	CompositeLit interface {
		Type() Expr
		EltsLen() int
		Elt(i int) Expr
		Rbrace() Pos

		ACompositeLit()
		Expr
	}

	ParenExpr interface {
		X() Expr

		AParenExpr()
		Expr
	}

	IndexExpr interface {
		X() Expr
		Index() Expr

		AnIndexExpr()
		Expr
	}

	SliceExpr interface {
		X() Expr
		Low() Expr
		High() Expr
		Max() Expr
		Slice3() bool
		Rbrack() Pos

		ASliceExpr()
		Expr
	}

	TypeAssertExpr interface {
		X() Expr
		Type() Expr

		ATypeAssertExpr()
		Expr
	}

	CallExpr interface {
		ArgsLen() int
		Arg(i int) Expr
		Fun() Expr
		Ellipsis() Pos
		Rparen() Pos

		ACallExpr()
		Expr
	}

	StarExpr interface {
		Expr
		AStarExpr()

		X() Expr
	}

	UnaryExpr interface {
		Expr
		AUnaryExpr()

		Op() token.Token
		X() Expr
	}

	BinaryExpr interface {
		Op() token.Token
		X() Expr
		Y() Expr

		ABinaryExpr()
		Expr
	}

	KeyValueExpr interface {
		Key() Expr
		Value() Expr

		AKeyValueExpr()
		Expr
	}

	ArrayType interface {
		Len() Expr
		Elt() Expr

		AnArrayType()
		Expr
	}

	StructType interface {
		Fields() FieldList

		AStructType()
		Expr
	}

	FuncType interface {
		Params() FieldList
		Results() FieldList

		AFuncType()
		Expr
	}

	InterfaceType interface {
		Methods() FieldList

		AnInterfaceType()
		Expr
	}

	MapType interface {
		Key() Expr
		Value() Expr

		AMapType()
		Expr
	}

	ChanType interface {
		// TODO: replace this return type
		Dir() ast.ChanDir
		Value() Expr

		AChanType()
		Expr
	}
)

type ExprList interface {
	Len() int
	Expr(i int) Expr
}

// Stmts
type (
	Stmt interface {
		AStmt()
		Node
	}

	BadStmt interface {
		ABadStmt()
		Stmt
	}

	DeclStmt interface {
		Decl() Decl

		ADeclStmt()
		Stmt
	}

	EmptyStmt interface {
		AnEmptyStmt()
		Stmt
	}

	LabeledStmt interface {
		Label() Ident
		Stmt() Stmt

		ALabeledStmt()
		Stmt
	}

	ExprStmt interface {
		X() Expr

		AnExprStmt()
		Stmt
	}

	SendStmt interface {
		Chan() Expr
		Value() Expr
		Arrow() Pos

		ASendStmt()
		Stmt
	}

	IncDecStmt interface {
		Tok() token.Token
		TokPos() Pos
		X() Expr

		AnIncDecStmt()
		Stmt
	}

	AssignStmt interface {
		Lhs() ExprList
		LhsLen() int
		LhsExpr(i int) Expr
		RhsLen() int
		RhsExpr(i int) Expr
		Rhs() ExprList
		Tok() token.Token
		TokPos() Pos

		AnAssignStmt()
		Stmt
	}

	GoStmt interface {
		Call() CallExpr

		AGoStmt()
		Stmt
	}

	DeferStmt interface {
		Call() CallExpr

		ADeferStmt()
		Stmt
	}

	ReturnStmt interface {
		Results() ExprList
		ResultsLen() int
		Result(i int) Expr
		Return() Pos

		AReturnStmt()
		Stmt
	}

	BranchStmt interface {
		Tok() token.Token
		Label() Ident

		ABranchStmt()
		Stmt
	}

	BlockStmt interface {
		List() StmtList
		Lbrace() Pos
		Rbrace() Pos

		ABlockStmt()
		Stmt
	}

	IfStmt interface {
		Init() Stmt
		Cond() Expr
		Body() BlockStmt
		Else() Stmt

		AnIfStmt()
		Stmt
	}

	CaseClause interface {
		ListLen() int
		Item(i int) Expr
		Body() StmtList

		ACaseClause()
		Stmt
	}

	SwitchStmt interface {
		Init() Stmt
		Tag() Expr
		Body() BlockStmt

		ASwitchStmt()
		Stmt
	}

	TypeSwitchStmt interface {
		Init() Stmt
		Assign() Stmt
		Body() BlockStmt

		ATypeSwitchStmt()
		Stmt
	}

	CommClause interface {
		Stmt
		ACommClause()

		Comm() Stmt
		Body() StmtList
	}

	SelectStmt interface {
		Stmt
		ASelectStmt()

		Body() BlockStmt
	}

	ForStmt interface {
		Init() Stmt
		Cond() Expr
		Post() Stmt
		Body() BlockStmt

		AForStmt()
		Stmt
	}

	RangeStmt interface {
		Stmt
		ARangeStmt()

		Key() Expr
		Value() Expr
		X() Expr
		Body() BlockStmt
		Tok() token.Token
		TokPos() Pos
	}
)

type StmtList interface {
	Len() int
	Stmt(i int) Stmt
}