This fixes problems due to storing binary symbols as interfaces{}
instead of concrete type, which confuses lookup functions to retrieve
methods etc. in reflect.
17 lines
313 B
Go
17 lines
313 B
Go
package stdlib
|
|
|
|
// Generated by 'goexports html'. Do not edit!
|
|
|
|
import (
|
|
"html"
|
|
"reflect"
|
|
)
|
|
|
|
func init() {
|
|
Value["html"] = map[string]reflect.Value{
|
|
"EscapeString": reflect.ValueOf(html.EscapeString),
|
|
"UnescapeString": reflect.ValueOf(html.UnescapeString),
|
|
}
|
|
Type["html"] = map[string]reflect.Type{}
|
|
}
|