github.com/goplus/igop@v0.25.0/pkg/container/list/go114_export.go (about)

     1  // export by github.com/goplus/igop/cmd/qexp
     2  
     3  //+build go1.14,!go1.15
     4  
     5  package list
     6  
     7  import (
     8  	q "container/list"
     9  
    10  	"reflect"
    11  
    12  	"github.com/goplus/igop"
    13  )
    14  
    15  func init() {
    16  	igop.RegisterPackage(&igop.Package{
    17  		Name:       "list",
    18  		Path:       "container/list",
    19  		Deps:       map[string]string{},
    20  		Interfaces: map[string]reflect.Type{},
    21  		NamedTypes: map[string]reflect.Type{
    22  			"Element": reflect.TypeOf((*q.Element)(nil)).Elem(),
    23  			"List":    reflect.TypeOf((*q.List)(nil)).Elem(),
    24  		},
    25  		AliasTypes: map[string]reflect.Type{},
    26  		Vars:       map[string]reflect.Value{},
    27  		Funcs: map[string]reflect.Value{
    28  			"New": reflect.ValueOf(q.New),
    29  		},
    30  		TypedConsts:   map[string]igop.TypedConst{},
    31  		UntypedConsts: map[string]igop.UntypedConst{},
    32  	})
    33  }