mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-03 18:47:47 +00:00
720a54a0fe
* stdlib: extend stdlib to allow import of more packages
21 lines
281 B
Go
21 lines
281 B
Go
package runtime
|
|
|
|
type Func struct {
|
|
}
|
|
|
|
func FuncForPC(pc uintptr) *Func {
|
|
return nil
|
|
}
|
|
|
|
func (f *Func) Name() string {
|
|
return ""
|
|
}
|
|
|
|
func Caller(skip int) (pc uintptr, file string, line int, ok bool) {
|
|
return 0, "", 0, false
|
|
}
|
|
|
|
func Stack(buf []byte, all bool) int {
|
|
return 0
|
|
}
|