func GoSymbolHash()

in toutoumomoma.go [247:254]


func GoSymbolHash(path string, stdlib bool) (hash []byte, imports []string, err error) {
	f, err := Open(path)
	if err != nil {
		return nil, nil, err
	}
	defer f.Close()
	return f.GoSymbolHash(stdlib)
}