github.com/goplus/igop@v0.25.0/pkg/index/suffixarray/go118_export.go (about)

     1  // export by github.com/goplus/igop/cmd/qexp
     2  
     3  //go:build go1.18 && !go1.19
     4  // +build go1.18,!go1.19
     5  
     6  package suffixarray
     7  
     8  import (
     9  	q "index/suffixarray"
    10  
    11  	"reflect"
    12  
    13  	"github.com/goplus/igop"
    14  )
    15  
    16  func init() {
    17  	igop.RegisterPackage(&igop.Package{
    18  		Name: "suffixarray",
    19  		Path: "index/suffixarray",
    20  		Deps: map[string]string{
    21  			"bytes":           "bytes",
    22  			"encoding/binary": "binary",
    23  			"errors":          "errors",
    24  			"io":              "io",
    25  			"math":            "math",
    26  			"regexp":          "regexp",
    27  			"sort":            "sort",
    28  		},
    29  		Interfaces: map[string]reflect.Type{},
    30  		NamedTypes: map[string]reflect.Type{
    31  			"Index": reflect.TypeOf((*q.Index)(nil)).Elem(),
    32  		},
    33  		AliasTypes: map[string]reflect.Type{},
    34  		Vars:       map[string]reflect.Value{},
    35  		Funcs: map[string]reflect.Value{
    36  			"New": reflect.ValueOf(q.New),
    37  		},
    38  		TypedConsts:   map[string]igop.TypedConst{},
    39  		UntypedConsts: map[string]igop.UntypedConst{},
    40  	})
    41  }