Files
moxa/stdlib/go1_15_net_http_httptrace.go
Ludovic Fernandez 8bb5daf60e feat: update stdlib mapping for go1.16
- drop stdlib for go1.14
- generate stdlib for go1.16
-  update CI configuration.
2021-02-17 10:02:03 +01:00

26 lines
803 B
Go

// Code generated by 'yaegi extract net/http/httptrace'. DO NOT EDIT.
// +build go1.15,!go1.16
package stdlib
import (
"net/http/httptrace"
"reflect"
)
func init() {
Symbols["net/http/httptrace"] = map[string]reflect.Value{
// function, constant and variable definitions
"ContextClientTrace": reflect.ValueOf(httptrace.ContextClientTrace),
"WithClientTrace": reflect.ValueOf(httptrace.WithClientTrace),
// type definitions
"ClientTrace": reflect.ValueOf((*httptrace.ClientTrace)(nil)),
"DNSDoneInfo": reflect.ValueOf((*httptrace.DNSDoneInfo)(nil)),
"DNSStartInfo": reflect.ValueOf((*httptrace.DNSStartInfo)(nil)),
"GotConnInfo": reflect.ValueOf((*httptrace.GotConnInfo)(nil)),
"WroteRequestInfo": reflect.ValueOf((*httptrace.WroteRequestInfo)(nil)),
}
}