* feat: support go1.22 * Temporary fix for consistency tests due to language change in for loops * review: clean old files --------- Co-authored-by: Fernandez Ludovic <ldez@users.noreply.github.com>
23 lines
467 B
Go
23 lines
467 B
Go
// Code generated by 'yaegi extract container/list'. DO NOT EDIT.
|
|
|
|
//go:build go1.21 && !go1.22
|
|
// +build go1.21,!go1.22
|
|
|
|
package stdlib
|
|
|
|
import (
|
|
"container/list"
|
|
"reflect"
|
|
)
|
|
|
|
func init() {
|
|
Symbols["container/list/list"] = map[string]reflect.Value{
|
|
// function, constant and variable definitions
|
|
"New": reflect.ValueOf(list.New),
|
|
|
|
// type definitions
|
|
"Element": reflect.ValueOf((*list.Element)(nil)),
|
|
"List": reflect.ValueOf((*list.List)(nil)),
|
|
}
|
|
}
|