aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/runtime/symtab.go
blob: cfc9885d7f9dabf1b9192af9ea197d2cfb432309 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package runtime

type Frames struct {
	//
}

type Frame struct {
	Function string

	File string
	Line int
	PC   uintptr
}

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

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