The heuristic to generate a package name identifier was incorrect. Now for binary packages, the package identifier is obtained by a symbol, generated by extract, which contains the string argument of package statement in source file. This should ensure an always correct default package identifier. Fixes #1095.
26 lines
813 B
Go
26 lines
813 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/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)),
|
|
}
|
|
}
|