summaryrefslogtreecommitdiffstats
path: root/src/go/parser/testdata/resolution/resolution.src
blob: a880dd1c5e1f6067528a53d2f18795a646d3ddb8 (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
// Copyright 2021 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 resolution

func f /* =@fdecl */(n /* =@narg */ ast.Node) bool {
		if n /* =@ninit */, ok /* =@ok */ := n /* @narg */ .(*ast.SelectorExpr); ok /* @ok */ {
			sel = n /* @ninit */
	}
}

type c /* =@cdecl */ map[token.Pos]resolvedObj

func (v /* =@vdecl */ c /* @cdecl */) Visit(node /* =@nodearg */ ast.Node) (w /* =@w */ ast.Visitor) {}

const (
	basic /* =@basic */ = iota
	labelOk // =@labelOk
)

type T /* =@T */ int

func _(count /* =@count */ T /* @T */) {
	x /* =@x1 */ := c /* @cdecl */{}
	switch x /* =@x2 */ := x /* @x1 */; x /* =@x3 */ := x /* @x2 */.(type) {
	case c /* @cdecl */:
	default:
	}
loop /* =@loop */:
	for {
		if true {
			break loop /* @loop */
		}
	}
	select {
	case err /* =@err1 */ := <-_:
		return err /* @err1 */
	case err /* =@err2 */ := <-_:
		return err /* @err2 */
	}

	_ = func(p1 /* =@p1 */ int, p2 /* =@p2 */ p1) {
		closed /* =@closed */ := p1 // @p1
		shadowed /* =@shadowed1 */ := p2 // @p2
		_ = func(shadowed /* =@shadowed2 */ p2 /* @p2 */) {
			closed /* @closed */ = 1
			shadowed /* @shadowed2 */ = 2
		}
	}
}

func (r /* =@r */ c /* @cdecl */) m(_ r) c /* @cdecl */ { return r /* @r */ }

var cycle /* =@cycle */ = cycle /* @cycle */ + 1

type chain /* =@chain */ struct {
	next /* =@next */ *chain /* @chain */
}

func recursive /* =@recursive */() {
	recursive /* @recursive */ ()
}