Files
moxa/stdlib/encoding_ascii85.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

22 lines
605 B
Go

package stdlib
// Generated by 'goexports encoding/ascii85'. Do not edit!
import (
"encoding/ascii85"
"reflect"
)
func init() {
Value["encoding/ascii85"] = map[string]reflect.Value{
"Decode": reflect.ValueOf(ascii85.Decode),
"Encode": reflect.ValueOf(ascii85.Encode),
"MaxEncodedLen": reflect.ValueOf(ascii85.MaxEncodedLen),
"NewDecoder": reflect.ValueOf(ascii85.NewDecoder),
"NewEncoder": reflect.ValueOf(ascii85.NewEncoder),
}
Type["encoding/ascii85"] = map[string]reflect.Type{
"CorruptInputError": reflect.TypeOf((*ascii85.CorruptInputError)(nil)).Elem(),
}
}