This fixes problems due to storing binary symbols as interfaces{}
instead of concrete type, which confuses lookup functions to retrieve
methods etc. in reflect.
18 lines
357 B
Go
18 lines
357 B
Go
package stdlib
|
|
|
|
// Generated by 'goexports index/suffixarray'. Do not edit!
|
|
|
|
import (
|
|
"index/suffixarray"
|
|
"reflect"
|
|
)
|
|
|
|
func init() {
|
|
Value["index/suffixarray"] = map[string]reflect.Value{
|
|
"New": reflect.ValueOf(suffixarray.New),
|
|
}
|
|
Type["index/suffixarray"] = map[string]reflect.Type{
|
|
"Index": reflect.TypeOf((*suffixarray.Index)(nil)).Elem(),
|
|
}
|
|
}
|