github.com/goplus/igop@v0.25.0/pkg/expvar/go115_export.go (about) 1 // export by github.com/goplus/igop/cmd/qexp 2 3 //+build go1.15,!go1.16 4 5 package expvar 6 7 import ( 8 q "expvar" 9 10 "reflect" 11 12 "github.com/goplus/igop" 13 ) 14 15 func init() { 16 igop.RegisterPackage(&igop.Package{ 17 Name: "expvar", 18 Path: "expvar", 19 Deps: map[string]string{ 20 "encoding/json": "json", 21 "fmt": "fmt", 22 "log": "log", 23 "math": "math", 24 "net/http": "http", 25 "os": "os", 26 "runtime": "runtime", 27 "sort": "sort", 28 "strconv": "strconv", 29 "strings": "strings", 30 "sync": "sync", 31 "sync/atomic": "atomic", 32 }, 33 Interfaces: map[string]reflect.Type{ 34 "Var": reflect.TypeOf((*q.Var)(nil)).Elem(), 35 }, 36 NamedTypes: map[string]reflect.Type{ 37 "Float": reflect.TypeOf((*q.Float)(nil)).Elem(), 38 "Func": reflect.TypeOf((*q.Func)(nil)).Elem(), 39 "Int": reflect.TypeOf((*q.Int)(nil)).Elem(), 40 "KeyValue": reflect.TypeOf((*q.KeyValue)(nil)).Elem(), 41 "Map": reflect.TypeOf((*q.Map)(nil)).Elem(), 42 "String": reflect.TypeOf((*q.String)(nil)).Elem(), 43 }, 44 AliasTypes: map[string]reflect.Type{}, 45 Vars: map[string]reflect.Value{}, 46 Funcs: map[string]reflect.Value{ 47 "Do": reflect.ValueOf(q.Do), 48 "Get": reflect.ValueOf(q.Get), 49 "Handler": reflect.ValueOf(q.Handler), 50 "NewFloat": reflect.ValueOf(q.NewFloat), 51 "NewInt": reflect.ValueOf(q.NewInt), 52 "NewMap": reflect.ValueOf(q.NewMap), 53 "NewString": reflect.ValueOf(q.NewString), 54 "Publish": reflect.ValueOf(q.Publish), 55 }, 56 TypedConsts: map[string]igop.TypedConst{}, 57 UntypedConsts: map[string]igop.UntypedConst{}, 58 }) 59 }