]> Cypherpunks repositories - gostls13.git/commitdiff
cmd/compile: rename retsigerr to sigerr
authorCuong Manh Le <cuong.manhle.vn@gmail.com>
Thu, 17 Sep 2020 00:46:01 +0000 (07:46 +0700)
committerCuong Manh Le <cuong.manhle.vn@gmail.com>
Fri, 18 Sep 2020 07:54:34 +0000 (07:54 +0000)
retsigerr was used to create error message for both wrong function
arguments and return arguments, so change its name to sigerr to reflect
that.

While at it, also add documentation for the wrong function arguments
case.

Passes toolstash-check.

Change-Id: I740c717ad38d4afab9e8c20f2e94579c8bca67ff
Reviewed-on: https://go-review.googlesource.com/c/go/+/255240
Trust: Cuong Manh Le <cuong.manhle.vn@gmail.com>
Run-TryBot: Cuong Manh Le <cuong.manhle.vn@gmail.com>
TryBot-Result: Go Bot <gobot@golang.org>
Reviewed-by: Matthew Dempsky <mdempsky@google.com>
src/cmd/compile/internal/gc/typecheck.go

index faa13d72f98a4ba94788b9de62b0a21c2397183b..cbfaa3073e63162ddd84b6cc8d9427252a8e28d2 100644 (file)
@@ -2711,7 +2711,7 @@ func errorDetails(nl Nodes, tstruct *types.Type, isddd bool) string {
                        return ""
                }
        }
-       return fmt.Sprintf("\n\thave %s\n\twant %v", nl.retsigerr(isddd), tstruct)
+       return fmt.Sprintf("\n\thave %s\n\twant %v", nl.sigerr(isddd), tstruct)
 }
 
 // sigrepr is a type's representation to the outside world,
@@ -2735,9 +2735,8 @@ func sigrepr(t *types.Type) string {
        return t.String()
 }
 
-// retsigerr returns the signature of the types
-// at the respective return call site of a function.
-func (nl Nodes) retsigerr(isddd bool) string {
+// sigerr returns the signature of the types at the call or return.
+func (nl Nodes) sigerr(isddd bool) string {
        if nl.Len() < 1 {
                return "()"
        }