-
Notifications
You must be signed in to change notification settings - Fork 3
/
copyloopvar.go
133 lines (125 loc) · 2.9 KB
/
copyloopvar.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
package copyloopvar
import (
"fmt"
"go/ast"
"go/token"
"golang.org/x/tools/go/analysis"
"golang.org/x/tools/go/analysis/passes/inspect"
"golang.org/x/tools/go/ast/inspector"
)
var checkAlias bool
func NewAnalyzer() *analysis.Analyzer {
analyzer := &analysis.Analyzer{
Name: "copyloopvar",
Doc: "copyloopvar is a linter detects places where loop variables are copied",
Run: run,
Requires: []*analysis.Analyzer{
inspect.Analyzer,
},
}
analyzer.Flags.BoolVar(&checkAlias, "check-alias", false, "check all assigning the loop variable to another variable")
return analyzer
}
func run(pass *analysis.Pass) (any, error) {
pass.ResultOf[inspect.Analyzer].(*inspector.Inspector).Preorder([]ast.Node{
(*ast.RangeStmt)(nil),
(*ast.ForStmt)(nil),
}, func(n ast.Node) {
switch node := n.(type) {
case *ast.RangeStmt:
checkRangeStmt(pass, node)
case *ast.ForStmt:
checkForStmt(pass, node)
}
})
return nil, nil
}
func checkRangeStmt(pass *analysis.Pass, rangeStmt *ast.RangeStmt) {
key, ok := rangeStmt.Key.(*ast.Ident)
if !ok {
return
}
var value *ast.Ident
if rangeStmt.Value != nil {
if value, ok = rangeStmt.Value.(*ast.Ident); !ok {
return
}
}
for _, stmt := range rangeStmt.Body.List {
assignStmt, ok := stmt.(*ast.AssignStmt)
if !ok {
continue
}
if assignStmt.Tok != token.DEFINE {
continue
}
for i, rh := range assignStmt.Rhs {
right, ok := rh.(*ast.Ident)
if !ok {
continue
}
if right.Name != key.Name && (value == nil || right.Name != value.Name) {
continue
}
if !checkAlias {
left, ok := assignStmt.Lhs[i].(*ast.Ident)
if !ok {
continue
}
if left.Name != right.Name {
continue
}
}
pass.Report(analysis.Diagnostic{
Pos: assignStmt.Pos(),
Message: fmt.Sprintf(`The copy of the 'for' variable "%s" can be deleted (Go 1.22+)`, right.Name),
})
}
}
}
func checkForStmt(pass *analysis.Pass, forStmt *ast.ForStmt) {
if forStmt.Init == nil {
return
}
initAssignStmt, ok := forStmt.Init.(*ast.AssignStmt)
if !ok {
return
}
initVarNameMap := make(map[string]interface{}, len(initAssignStmt.Lhs))
for _, lh := range initAssignStmt.Lhs {
if initVar, ok := lh.(*ast.Ident); ok {
initVarNameMap[initVar.Name] = struct{}{}
}
}
for _, stmt := range forStmt.Body.List {
assignStmt, ok := stmt.(*ast.AssignStmt)
if !ok {
continue
}
if assignStmt.Tok != token.DEFINE {
continue
}
for i, rh := range assignStmt.Rhs {
right, ok := rh.(*ast.Ident)
if !ok {
continue
}
if _, ok := initVarNameMap[right.Name]; !ok {
continue
}
if !checkAlias {
left, ok := assignStmt.Lhs[i].(*ast.Ident)
if !ok {
continue
}
if left.Name != right.Name {
continue
}
}
pass.Report(analysis.Diagnostic{
Pos: assignStmt.Pos(),
Message: fmt.Sprintf(`The copy of the 'for' variable "%s" can be deleted (Go 1.22+)`, right.Name),
})
}
}
}