mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-16 10:43:29 +00:00
committed by
Ayke
parent
5b82125765
commit
62f9f61664
@@ -0,0 +1,5 @@
|
|||||||
|
package runtime
|
||||||
|
|
||||||
|
func Callers(skip int, pc []uintptr) int {
|
||||||
|
return 0
|
||||||
|
}
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
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
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user