修复stream中的错误

This commit is contained in:
huangsimin@fusen.cn 2023-12-07 16:20:19 +08:00
parent 76a781d006
commit 61c10dab23

View File

@ -1082,11 +1082,9 @@ func parseGoFile(filePath string) (ClientParams []*ClientParam) {
} else if iface, ok := typeSpec.Type.(*ast.InterfaceType); ok {
interfaceName := typeSpec.Name.Name
if len(iface.Methods.List) == 3 {
if len(iface.Methods.List[0].Names) == 1 && len(iface.Methods.List[1].Names) == 1 {
name0 := iface.Methods.List[0].Names[0].Name
name1 := iface.Methods.List[1].Names[0].Name
if name0 == "Send" && name1 == "CloseAndRecv" {
if len(iface.Methods.List) >= 3 {
if len(iface.Methods.List[2].Names) == 0 {
// log.Println(name0, name1)
if getTypeString(iface.Methods.List[2].Type) == "grpc.ClientStream" {
// MethodType = "stream"
@ -1094,7 +1092,7 @@ func parseGoFile(filePath string) (ClientParams []*ClientParam) {
continue
}
}
}
}