aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/compile/internal/syntax/nodes.go
blob: 7632f95348a131469016a1b21ab6331b1bc4d869 (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
// Copyright 2016 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.

package syntax

// ----------------------------------------------------------------------------
// Nodes

type Node interface {
	aNode()
}

type node struct {
	pos  uint32
	line uint32
	doc  *Comment // nil means no comment(s) attached
}

func (node) aNode() {}

func (n *node) init(p *parser) {
	n.pos = uint32(p.pos)
	n.line = uint32(p.line)
}

// ----------------------------------------------------------------------------
// Files

type File struct {
	node
	PkgName  *Name
	DeclList []Decl
	Lines    int
}

// ----------------------------------------------------------------------------
// Declarations

type (
	Decl interface {
		Node
		aDecl()
	}

	ImportDecl struct {
		decl
		LocalPkgName *Name // including "."; nil means no rename present
		Path         *BasicLit
		Group        *Group // nil means not part of a group
	}

	ConstDecl struct {
		decl
		NameList []*Name
		Type     Expr   // nil means no type
		Values   Expr   // nil means no values
		Group    *Group // nil means not part of a group
	}

	TypeDecl struct {
		decl
		Name  *Name
		Type  Expr
		Group *Group // nil means not part of a group
	}

	VarDecl struct {
		decl
		NameList []*Name
		Type     Expr   // nil means no type
		Values   Expr   // nil means no values
		Group    *Group // nil means not part of a group
	}

	FuncDecl struct {
		decl
		Attr map[string]bool // go:attr map
		Recv *Field          // nil means regular function
		Name *Name
		Type *FuncType
		Body []Stmt // nil means no body (forward declaration)
	}
)

type decl struct{ node }

func (decl) aDecl() {}

// All declarations belonging to the same group point to the same Group node.
type Group struct {
	dummy int // make sure it's not an empty node
}

// ----------------------------------------------------------------------------
// Expressions

type (
	Expr interface {
		Node
		aExpr()
	}

	// Value
	Name struct {
		expr
		Value string
	}

	// Value
	BasicLit struct {
		expr
		Value string
	}

	// Type { ElemList[0], ElemList[1], ... }
	CompositeLit struct {
		expr
		Type     Expr // nil means no literal type
		ElemList []Expr
		NKeys    int // number of elements with keys
	}

	// Key: Value
	KeyValueExpr struct {
		expr
		Key, Value Expr
	}

	// func Type { Body }
	FuncLit struct {
		expr
		Type *FuncType
		Body []Stmt
	}

	// (X)
	ParenExpr struct {
		expr
		X Expr
	}

	// X.Sel
	SelectorExpr struct {
		expr
		X   Expr
		Sel *Name
	}

	// X[Index]
	IndexExpr struct {
		expr
		X     Expr
		Index Expr
	}

	// X[Index[0] : Index[1] : Index[2]]
	SliceExpr struct {
		expr
		X     Expr
		Index [3]Expr
	}

	// X.(Type)
	AssertExpr struct {
		expr
		X Expr
		// TODO(gri) consider using Name{"..."} instead of nil (permits attaching of comments)
		Type Expr // nil means x.(type) (for use in type switch)
	}

	Operation struct {
		expr
		Op   Operator
		X, Y Expr // Y == nil means unary expression
	}

	// Fun(ArgList[0], ArgList[1], ...)
	CallExpr struct {
		expr
		Fun     Expr
		ArgList []Expr
		HasDots bool // last argument is followed by ...
	}

	// ElemList[0], ElemList[1], ...
	ListExpr struct {
		expr
		ElemList []Expr
	}

	// [Len]Elem
	ArrayType struct {
		expr
		// TODO(gri) consider using Name{"..."} instead of nil (permits attaching of comments)
		Len  Expr // nil means Len is ...
		Elem Expr
	}

	// []Elem
	SliceType struct {
		expr
		Elem Expr
	}

	// ...Elem
	DotsType struct {
		expr
		Elem Expr
	}

	// struct { FieldList[0] TagList[0]; FieldList[1] TagList[1]; ... }
	StructType struct {
		expr
		FieldList []*Field
		TagList   []*BasicLit // i >= len(TagList) || TagList[i] == nil means no tag for field i
	}

	// Name Type
	//      Type
	Field struct {
		node
		Name *Name // nil means anonymous field/parameter (structs/parameters), or embedded interface (interfaces)
		Type Expr  // field names declared in a list share the same Type (identical pointers)
	}

	// interface { MethodList[0]; MethodList[1]; ... }
	InterfaceType struct {
		expr
		MethodList []*Field
	}

	FuncType struct {
		expr
		ParamList  []*Field
		ResultList []*Field
	}

	// map[Key]Value
	MapType struct {
		expr
		Key   Expr
		Value Expr
	}

	//   chan Elem
	// <-chan Elem
	// chan<- Elem
	ChanType struct {
		expr
		Dir  ChanDir // 0 means no direction
		Elem Expr
	}
)

type expr struct{ node }

func (expr) aExpr() {}

type ChanDir uint

const (
	_ ChanDir = iota
	SendOnly
	RecvOnly
)

// ----------------------------------------------------------------------------
// Statements

type (
	Stmt interface {
		Node
		aStmt()
	}

	SimpleStmt interface {
		Stmt
		aSimpleStmt()
	}

	EmptyStmt struct {
		simpleStmt
	}

	LabeledStmt struct {
		stmt
		Label *Name
		Stmt  Stmt
	}

	BlockStmt struct {
		stmt
		Body []Stmt
	}

	ExprStmt struct {
		simpleStmt
		X Expr
	}

	SendStmt struct {
		simpleStmt
		Chan, Value Expr // Chan <- Value
	}

	DeclStmt struct {
		stmt
		DeclList []Decl
	}

	AssignStmt struct {
		simpleStmt
		Op       Operator // 0 means no operation
		Lhs, Rhs Expr
	}

	BranchStmt struct {
		stmt
		Tok   token // TODO(gri) token values are not yet exported
		Label *Name
	}

	CallStmt struct {
		stmt
		Tok  token // _Go, or _Defer -- TODO(gri) token values are not yet exported
		Call *CallExpr
	}

	ReturnStmt struct {
		stmt
		Results Expr // nil means no (explicit) results
	}

	IfStmt struct {
		stmt
		Init SimpleStmt
		Cond Expr
		Then []Stmt
		Else []Stmt
	}

	ForStmt struct {
		stmt
		Init SimpleStmt // incl. *RangeClause
		Cond Expr
		Post SimpleStmt
		Body []Stmt
	}

	SwitchStmt struct {
		stmt
		Init SimpleStmt
		Tag  Expr
		Body []*CaseClause
	}

	SelectStmt struct {
		stmt
		Body []*CommClause
	}
)

type (
	RangeClause struct {
		simpleStmt
		Lhs Expr // nil means no Lhs = or Lhs :=
		Def bool // means :=
		X   Expr // range X
	}

	TypeSwitchGuard struct {
		expr
		// TODO(gri) consider using Name{"..."} instead of nil (permits attaching of comments)
		Lhs *Name // nil means no Lhs :=
		X   Expr  // X.(type)
	}

	CaseClause struct {
		node
		Cases Expr // nil means default clause
		Body  []Stmt
	}

	CommClause struct {
		node
		Comm SimpleStmt // send or receive stmt; nil means default clause
		Body []Stmt
	}
)

type stmt struct{ node }

func (stmt) aStmt() {}

type simpleStmt struct {
	stmt
}

func (simpleStmt) aSimpleStmt() {}

// ----------------------------------------------------------------------------
// Comments

type CommentKind uint

const (
	Above CommentKind = iota
	Below
	Left
	Right
)

type Comment struct {
	Kind CommentKind
	Text string
	Next *Comment
}