File: callhierarchy.txt

package info (click to toggle)
golang-golang-x-tools 1%3A0.25.0%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 22,724 kB
  • sloc: javascript: 2,027; asm: 1,645; sh: 166; yacc: 155; makefile: 49; ansic: 8
file content (92 lines) | stat: -rw-r--r-- 1,642 bytes parent folder | download | duplicates (2)
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
This test checks call hierarchy queries.

-ignore_extra_diags due to the initialization cycle.

-- flags --
-ignore_extra_diags

-- go.mod --
module golang.org/lsptests/callhierarchy

-- incoming/incoming.go --
package incoming

import "golang.org/lsptests/callhierarchy"

// A is exported to test incoming calls across packages
func A() { //@loc(incomingA, "A")
	callhierarchy.D()
}

-- outgoing/outgoing.go --
package outgoing

// B is exported to test outgoing calls across packages
func B() { //@loc(outgoingB, "B")
}

-- hierarchy.go --
package callhierarchy //@loc(hPkg, "callhierarchy")

import "golang.org/lsptests/callhierarchy/outgoing"

func a() { //@loc(hA, "a")
	D()
}

func b() { //@loc(hB, "b")
	D()
}

// C is an exported function
func C() { //@loc(hC, "C")
	D()
	D()
}

// To test hierarchy across function literals
var x = func() { D() } //@loc(hX, "x"),loc(hXGlobal, "x")

// D is exported to test incoming/outgoing calls across packages
func D() { //@loc(hD, "D"),incomingcalls(hD, hA, hB, hC, hXGlobal, incomingA),outgoingcalls(hD, hE, hF, hG, hX, outgoingB, hFoo, hH, hI, hJ, hK)
	e()
	x()
	F()
	outgoing.B()
	foo := func() {} //@loc(hFoo, "foo"),incomingcalls(hFoo, hD),outgoingcalls(hFoo)
	foo()

	func() {
		g()
	}()

	var i Interface = impl{}
	i.H()
	i.I()

	s := Struct{}
	s.J()
	s.K()
}

func e() {} //@loc(hE, "e")

// F is an exported function
func F() {} //@loc(hF, "F")

func g() {} //@loc(hG, "g")

type Interface interface {
	H() //@loc(hH, "H")
	I() //@loc(hI, "I")
}

type impl struct{}

func (i impl) H() {}
func (i impl) I() {}

type Struct struct {
	J func() //@loc(hJ, "J")
	K func() //@loc(hK, "K")
}