aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/runtime/symtab.go
blob: 37c21ee895656c569f06e8f3b8103e759cea3b8f (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
package runtime

type Frames struct {
	//
}

type Frame struct {
	PC uintptr

	Func *Func

	Function string

	File string
	Line int
}

func CallersFrames(callers []uintptr) *Frames {
	return nil
}

func (ci *Frames) Next() (frame Frame, more bool) {
	return Frame{}, false
}