Files
moxa/stdlib/go_format.go
Marc Vertes 25adc35a3c Change representation of stdlib from interface{} to reflect.Value
This fixes problems due to storing binary symbols as interfaces{}
instead of concrete type, which confuses lookup functions to retrieve
methods etc. in reflect.
2018-08-28 03:12:28 +02:00

17 lines
305 B
Go

package stdlib
// Generated by 'goexports go/format'. Do not edit!
import (
"go/format"
"reflect"
)
func init() {
Value["go/format"] = map[string]reflect.Value{
"Node": reflect.ValueOf(format.Node),
"Source": reflect.ValueOf(format.Source),
}
Type["go/format"] = map[string]reflect.Type{}
}