mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-03 10:37:46 +00:00
734b0cb6bc
The reflect package isn't supported yet. But at least the Go parser/typechecker can now deal with it.
17 lines
229 B
Go
17 lines
229 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
|
|
}
|