* 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>
63 lines
2.0 KiB
Go
63 lines
2.0 KiB
Go
// Code generated by 'yaegi extract context'. DO NOT EDIT.
|
|
|
|
//go:build go1.22
|
|
// +build go1.22
|
|
|
|
package stdlib
|
|
|
|
import (
|
|
"context"
|
|
"reflect"
|
|
"time"
|
|
)
|
|
|
|
func init() {
|
|
Symbols["context/context"] = map[string]reflect.Value{
|
|
// function, constant and variable definitions
|
|
"AfterFunc": reflect.ValueOf(context.AfterFunc),
|
|
"Background": reflect.ValueOf(context.Background),
|
|
"Canceled": reflect.ValueOf(&context.Canceled).Elem(),
|
|
"Cause": reflect.ValueOf(context.Cause),
|
|
"DeadlineExceeded": reflect.ValueOf(&context.DeadlineExceeded).Elem(),
|
|
"TODO": reflect.ValueOf(context.TODO),
|
|
"WithCancel": reflect.ValueOf(context.WithCancel),
|
|
"WithCancelCause": reflect.ValueOf(context.WithCancelCause),
|
|
"WithDeadline": reflect.ValueOf(context.WithDeadline),
|
|
"WithDeadlineCause": reflect.ValueOf(context.WithDeadlineCause),
|
|
"WithTimeout": reflect.ValueOf(context.WithTimeout),
|
|
"WithTimeoutCause": reflect.ValueOf(context.WithTimeoutCause),
|
|
"WithValue": reflect.ValueOf(context.WithValue),
|
|
"WithoutCancel": reflect.ValueOf(context.WithoutCancel),
|
|
|
|
// type definitions
|
|
"CancelCauseFunc": reflect.ValueOf((*context.CancelCauseFunc)(nil)),
|
|
"CancelFunc": reflect.ValueOf((*context.CancelFunc)(nil)),
|
|
"Context": reflect.ValueOf((*context.Context)(nil)),
|
|
|
|
// interface wrapper definitions
|
|
"_Context": reflect.ValueOf((*_context_Context)(nil)),
|
|
}
|
|
}
|
|
|
|
// _context_Context is an interface wrapper for Context type
|
|
type _context_Context struct {
|
|
IValue interface{}
|
|
WDeadline func() (deadline time.Time, ok bool)
|
|
WDone func() <-chan struct{}
|
|
WErr func() error
|
|
WValue func(key any) any
|
|
}
|
|
|
|
func (W _context_Context) Deadline() (deadline time.Time, ok bool) {
|
|
return W.WDeadline()
|
|
}
|
|
func (W _context_Context) Done() <-chan struct{} {
|
|
return W.WDone()
|
|
}
|
|
func (W _context_Context) Err() error {
|
|
return W.WErr()
|
|
}
|
|
func (W _context_Context) Value(key any) any {
|
|
return W.WValue(key)
|
|
}
|