github.com/goplus/igop@v0.25.0/pkg/path/go114_export.go (about) 1 // export by github.com/goplus/igop/cmd/qexp 2 3 //+build go1.14,!go1.15 4 5 package path 6 7 import ( 8 q "path" 9 10 "reflect" 11 12 "github.com/goplus/igop" 13 ) 14 15 func init() { 16 igop.RegisterPackage(&igop.Package{ 17 Name: "path", 18 Path: "path", 19 Deps: map[string]string{ 20 "errors": "errors", 21 "strings": "strings", 22 "unicode/utf8": "utf8", 23 }, 24 Interfaces: map[string]reflect.Type{}, 25 NamedTypes: map[string]reflect.Type{}, 26 AliasTypes: map[string]reflect.Type{}, 27 Vars: map[string]reflect.Value{ 28 "ErrBadPattern": reflect.ValueOf(&q.ErrBadPattern), 29 }, 30 Funcs: map[string]reflect.Value{ 31 "Base": reflect.ValueOf(q.Base), 32 "Clean": reflect.ValueOf(q.Clean), 33 "Dir": reflect.ValueOf(q.Dir), 34 "Ext": reflect.ValueOf(q.Ext), 35 "IsAbs": reflect.ValueOf(q.IsAbs), 36 "Join": reflect.ValueOf(q.Join), 37 "Match": reflect.ValueOf(q.Match), 38 "Split": reflect.ValueOf(q.Split), 39 }, 40 TypedConsts: map[string]igop.TypedConst{}, 41 UntypedConsts: map[string]igop.UntypedConst{}, 42 }) 43 }