20 строки
249 Б
Go
20 строки
249 Б
Go
package runtime
|
|
|
|
type Frames struct {
|
|
//
|
|
}
|
|
|
|
type Frame struct {
|
|
Function string
|
|
|
|
File string
|
|
Line int
|
|
}
|
|
|
|
func CallersFrames(callers []uintptr) *Frames {
|
|
return nil
|
|
}
|
|
|
|
func (ci *Frames) Next() (frame Frame, more bool) {
|
|
return Frame{}, false
|
|
}
|