tinygo/src/runtime/symtab.go
Federico G. Schwindt 62f9f61664 Add runtime stubs required for net/http
Continued from #1911.
2021-06-01 15:15:12 +02:00

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
}