mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-04 19:17:47 +00:00
62f9f61664
Continued from #1911.
21 lines
249 B
Go
21 lines
249 B
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
|
|
}
|