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.
23 lines
502 B
Go
23 lines
502 B
Go
// Code generated by 'yaegi extract hash/fnv'. DO NOT EDIT.
|
|
|
|
// +build go1.16
|
|
|
|
package stdlib
|
|
|
|
import (
|
|
"hash/fnv"
|
|
"reflect"
|
|
)
|
|
|
|
func init() {
|
|
Symbols["hash/fnv/fnv"] = map[string]reflect.Value{
|
|
// function, constant and variable definitions
|
|
"New128": reflect.ValueOf(fnv.New128),
|
|
"New128a": reflect.ValueOf(fnv.New128a),
|
|
"New32": reflect.ValueOf(fnv.New32),
|
|
"New32a": reflect.ValueOf(fnv.New32a),
|
|
"New64": reflect.ValueOf(fnv.New64),
|
|
"New64a": reflect.ValueOf(fnv.New64a),
|
|
}
|
|
}
|