Skip to content

Commit 624dbd0

Browse files
committed
go/analysis/passes/stringintconv: post gotypesalias=1 tweak
stringintconv will return the alias name if available. Make the test agnostic. Updates golang/go#64581 Change-Id: I47d245c62f45cd6c02f45ba5eb770318dcb7cbec Reviewed-on: https://go-review.googlesource.com/c/tools/+/577657 LUCI-TryBot-Result: Go LUCI <[email protected]> Reviewed-by: Robert Findley <[email protected]>
1 parent 4669dc7 commit 624dbd0

File tree

3 files changed

+9
-10
lines changed

3 files changed

+9
-10
lines changed

go/analysis/passes/stringintconv/string.go

+7-8
Original file line numberDiff line numberDiff line change
@@ -59,14 +59,13 @@ func describe(typ, inType types.Type, inName string) string {
5959
return name
6060
}
6161

62-
func typeName(typ types.Type) string {
63-
typ = aliases.Unalias(typ)
64-
// TODO(adonovan): don't discard alias type, return its name.
65-
if v, _ := typ.(*types.Basic); v != nil {
66-
return v.Name()
67-
}
68-
if v, _ := typ.(interface{ Obj() *types.TypeName }); v != nil { // Named, TypeParam
69-
return v.Obj().Name()
62+
func typeName(t types.Type) string {
63+
type hasTypeName interface{ Obj() *types.TypeName } // Alias, Named, TypeParam
64+
switch t := t.(type) {
65+
case *types.Basic:
66+
return t.Name()
67+
case hasTypeName:
68+
return t.Obj().Name()
7069
}
7170
return ""
7271
}

go/analysis/passes/stringintconv/testdata/src/a/a.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ func StringTest() {
3030
_ = string(k)
3131
_ = string(p) // want `^conversion from untyped int to string yields a string of one rune, not a string of digits \(did you mean fmt\.Sprint\(x\)\?\)$`
3232
_ = A(l) // want `^conversion from C \(int\) to A \(string\) yields a string of one rune, not a string of digits \(did you mean fmt\.Sprint\(x\)\?\)$`
33-
_ = B(m) // want `^conversion from uintptr to B \(string\) yields a string of one rune, not a string of digits \(did you mean fmt\.Sprint\(x\)\?\)$`
33+
_ = B(m) // want `^conversion from (uintptr|D \(uintptr\)) to B \(string\) yields a string of one rune, not a string of digits \(did you mean fmt\.Sprint\(x\)\?\)$`
3434
_ = string(n[1]) // want `^conversion from int to string yields a string of one rune, not a string of digits \(did you mean fmt\.Sprint\(x\)\?\)$`
3535
_ = string(o.x) // want `^conversion from int to string yields a string of one rune, not a string of digits \(did you mean fmt\.Sprint\(x\)\?\)$`
3636
}

go/analysis/passes/stringintconv/testdata/src/a/a.go.golden

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ func StringTest() {
3030
_ = string(k)
3131
_ = string(rune(p)) // want `^conversion from untyped int to string yields a string of one rune, not a string of digits \(did you mean fmt\.Sprint\(x\)\?\)$`
3232
_ = A(rune(l)) // want `^conversion from C \(int\) to A \(string\) yields a string of one rune, not a string of digits \(did you mean fmt\.Sprint\(x\)\?\)$`
33-
_ = B(rune(m)) // want `^conversion from uintptr to B \(string\) yields a string of one rune, not a string of digits \(did you mean fmt\.Sprint\(x\)\?\)$`
33+
_ = B(rune(m)) // want `^conversion from (uintptr|D \(uintptr\)) to B \(string\) yields a string of one rune, not a string of digits \(did you mean fmt\.Sprint\(x\)\?\)$`
3434
_ = string(rune(n[1])) // want `^conversion from int to string yields a string of one rune, not a string of digits \(did you mean fmt\.Sprint\(x\)\?\)$`
3535
_ = string(rune(o.x)) // want `^conversion from int to string yields a string of one rune, not a string of digits \(did you mean fmt\.Sprint\(x\)\?\)$`
3636
}

0 commit comments

Comments
 (0)