github.com/goplus/gossa@v0.3.25/pkg/compress/bzip2/go118_export.go (about) 1 // export by github.com/goplus/gossa/cmd/qexp 2 3 //go:build go1.18 4 // +build go1.18 5 6 package bzip2 7 8 import ( 9 q "compress/bzip2" 10 11 "reflect" 12 13 "github.com/goplus/gossa" 14 ) 15 16 func init() { 17 gossa.RegisterPackage(&gossa.Package{ 18 Name: "bzip2", 19 Path: "compress/bzip2", 20 Deps: map[string]string{ 21 "bufio": "bufio", 22 "io": "io", 23 "sort": "sort", 24 }, 25 Interfaces: map[string]reflect.Type{}, 26 NamedTypes: map[string]gossa.NamedType{ 27 "StructuralError": {reflect.TypeOf((*q.StructuralError)(nil)).Elem(), "Error", ""}, 28 }, 29 AliasTypes: map[string]reflect.Type{}, 30 Vars: map[string]reflect.Value{}, 31 Funcs: map[string]reflect.Value{ 32 "NewReader": reflect.ValueOf(q.NewReader), 33 }, 34 TypedConsts: map[string]gossa.TypedConst{}, 35 UntypedConsts: map[string]gossa.UntypedConst{}, 36 }) 37 }