Files
moxa/stdlib/net_http_cookiejar.go
Marc Vertes 25adc35a3c Change representation of stdlib from interface{} to reflect.Value
This fixes problems due to storing binary symbols as interfaces{}
instead of concrete type, which confuses lookup functions to retrieve
methods etc. in reflect.
2018-08-28 03:12:28 +02:00

20 lines
519 B
Go

package stdlib
// Generated by 'goexports net/http/cookiejar'. Do not edit!
import (
"net/http/cookiejar"
"reflect"
)
func init() {
Value["net/http/cookiejar"] = map[string]reflect.Value{
"New": reflect.ValueOf(cookiejar.New),
}
Type["net/http/cookiejar"] = map[string]reflect.Type{
"Jar": reflect.TypeOf((*cookiejar.Jar)(nil)).Elem(),
"Options": reflect.TypeOf((*cookiejar.Options)(nil)).Elem(),
"PublicSuffixList": reflect.TypeOf((*cookiejar.PublicSuffixList)(nil)).Elem(),
}
}