github.com/goplus/igop@v0.25.0/pkg/encoding/ascii85/go114_export.go (about) 1 // export by github.com/goplus/igop/cmd/qexp 2 3 //+build go1.14,!go1.15 4 5 package ascii85 6 7 import ( 8 q "encoding/ascii85" 9 10 "reflect" 11 12 "github.com/goplus/igop" 13 ) 14 15 func init() { 16 igop.RegisterPackage(&igop.Package{ 17 Name: "ascii85", 18 Path: "encoding/ascii85", 19 Deps: map[string]string{ 20 "io": "io", 21 "strconv": "strconv", 22 }, 23 Interfaces: map[string]reflect.Type{}, 24 NamedTypes: map[string]reflect.Type{ 25 "CorruptInputError": reflect.TypeOf((*q.CorruptInputError)(nil)).Elem(), 26 }, 27 AliasTypes: map[string]reflect.Type{}, 28 Vars: map[string]reflect.Value{}, 29 Funcs: map[string]reflect.Value{ 30 "Decode": reflect.ValueOf(q.Decode), 31 "Encode": reflect.ValueOf(q.Encode), 32 "MaxEncodedLen": reflect.ValueOf(q.MaxEncodedLen), 33 "NewDecoder": reflect.ValueOf(q.NewDecoder), 34 "NewEncoder": reflect.ValueOf(q.NewEncoder), 35 }, 36 TypedConsts: map[string]igop.TypedConst{}, 37 UntypedConsts: map[string]igop.UntypedConst{}, 38 }) 39 }