github.com/goplus/gossa@v0.3.25/pkg/container/list/go116_export.go (about)

     1  // export by github.com/goplus/gossa/cmd/qexp
     2  
     3  //+build go1.16,!go1.17
     4  
     5  package list
     6  
     7  import (
     8  	q "container/list"
     9  
    10  	"reflect"
    11  
    12  	"github.com/goplus/gossa"
    13  )
    14  
    15  func init() {
    16  	gossa.RegisterPackage(&gossa.Package{
    17  		Name:       "list",
    18  		Path:       "container/list",
    19  		Deps:       map[string]string{},
    20  		Interfaces: map[string]reflect.Type{},
    21  		NamedTypes: map[string]gossa.NamedType{
    22  			"Element": {reflect.TypeOf((*q.Element)(nil)).Elem(), "", "Next,Prev"},
    23  			"List":    {reflect.TypeOf((*q.List)(nil)).Elem(), "", "Back,Front,Init,InsertAfter,InsertBefore,Len,MoveAfter,MoveBefore,MoveToBack,MoveToFront,PushBack,PushBackList,PushFront,PushFrontList,Remove,insert,insertValue,lazyInit,move,remove"},
    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]gossa.TypedConst{},
    31  		UntypedConsts: map[string]gossa.UntypedConst{},
    32  	})
    33  }