Skip to content

Commit 4478db0

Browse files
committedJun 3, 2024·
go/analysis/passes/copylock: suppress error in ill-typed code
The copylock analyzer is marked RunDespiteErrors. In ill-typed code such as S{T} where S and T are both types, the compiler will warn that T is not an expression; the copylocks analyzer should not additionally report a diagnostic as if T had been an expression of type T. The fix feels rather ad hoc. In general, analyzers marked RunDespiteErrors are unlikely to be able to anticipate the myriad ways that trees can be ill-formed and avoid spurious diagnostics. Also, add a main.go file for copylock. Fixes golang/go#67787 Change-Id: I07afbed16a4138fe602c22ec42171b4a5e634286 Reviewed-on: https://go-review.googlesource.com/c/tools/+/589895 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Robert Findley <rfindley@google.com>
1 parent 018d3b2 commit 4478db0

File tree

4 files changed

+29
-2
lines changed

4 files changed

+29
-2
lines changed
 

‎go/analysis/passes/copylock/copylock.go

+4-1
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,10 @@ func lockPathRhs(pass *analysis.Pass, x ast.Expr) typePath {
240240
return nil
241241
}
242242
}
243-
return lockPath(pass.Pkg, pass.TypesInfo.Types[x].Type, nil)
243+
if tv, ok := pass.TypesInfo.Types[x]; ok && tv.IsValue() {
244+
return lockPath(pass.Pkg, tv.Type, nil)
245+
}
246+
return nil
244247
}
245248

246249
// lockPath returns a typePath describing the location of a lock value

‎go/analysis/passes/copylock/copylock_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ import (
1313

1414
func Test(t *testing.T) {
1515
testdata := analysistest.TestData()
16-
analysistest.Run(t, testdata, copylock.Analyzer, "a", "typeparams")
16+
analysistest.Run(t, testdata, copylock.Analyzer, "a", "typeparams", "issue67787")
1717
}

‎go/analysis/passes/copylock/main.go

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// Copyright 2024 The Go Authors. All rights reserved.
2+
// Use of this source code is governed by a BSD-style
3+
// license that can be found in the LICENSE file.
4+
5+
//go:build ignore
6+
7+
// The copylock command applies the golang.org/x/tools/go/analysis/passes/copylock
8+
// analysis to the specified packages of Go source code.
9+
package main
10+
11+
import (
12+
"golang.org/x/tools/go/analysis/passes/copylock"
13+
"golang.org/x/tools/go/analysis/singlechecker"
14+
)
15+
16+
func main() { singlechecker.Main(copylock.Analyzer) }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
package issue67787
2+
3+
import "sync"
4+
5+
type T struct{ mu sync.Mutex }
6+
type T1 struct{ t *T }
7+
8+
func NewT1() *T1 { return &T1{T} } // no analyzer diagnostic about T

0 commit comments

Comments
 (0)
Please sign in to comment.