Add linter wastedassign (#1651)

This commit is contained in:
Kensei Nakada 2021-02-22 06:01:51 +09:00 committed by GitHub
parent a3c2ed0206
commit 012559c506
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 135 additions and 0 deletions

107
test/testdata/wastedassign.go vendored Normal file
View file

@ -0,0 +1,107 @@
//args: -Ewastedassign
package testdata
import (
"strings"
)
func p(x int) int {
return x + 1
}
func typeSwitchNoError(val interface{}, times uint) interface{} {
switch hoge := val.(type) {
case int:
return 12
case string:
return strings.Repeat(hoge, int(times))
default:
return nil
}
}
func noUseParamsNoError(params string) int {
a := 12
println(a)
return a
}
func manyif(param int) int {
println(param)
useOutOfIf := 1212121 // ERROR "wasted assignment"
ret := 0
if false {
useOutOfIf = 200 // ERROR "reassigned, but never used afterwards"
return 0
} else if param == 100 {
useOutOfIf = 100 // ERROR "wasted assignment"
useOutOfIf = 201
useOutOfIf = p(useOutOfIf)
useOutOfIf += 200 // ERROR "wasted assignment"
} else {
useOutOfIf = 100
useOutOfIf += 100
useOutOfIf = p(useOutOfIf)
useOutOfIf += 200 // ERROR "wasted assignment"
}
if false {
useOutOfIf = 200 // ERROR "reassigned, but never used afterwards"
return 0
} else if param == 200 {
useOutOfIf = 100 // ERROR "wasted assignment"
useOutOfIf = 201
useOutOfIf = p(useOutOfIf)
useOutOfIf += 200
} else {
useOutOfIf = 100
useOutOfIf += 100
useOutOfIf = p(useOutOfIf)
useOutOfIf += 200
}
println(useOutOfIf)
useOutOfIf = 192
useOutOfIf += 100
useOutOfIf += 200 // ERROR "reassigned, but never used afterwards"
return ret
}
func checkLoopTest() int {
hoge := 12
noUse := 1111
println(noUse)
noUse = 1111 // ERROR "reassigned, but never used afterwards"
for {
if hoge == 14 {
break
}
hoge = hoge + 1
}
return hoge
}
func infinity() {
var i int
var hoge int
for {
hoge = 5 // ERROR "reassigned, but never used afterwards"
}
println(i)
println(hoge)
return
}
func infinity2() {
var i int
var hoge int
for {
hoge = 5
break
}
println(i)
println(hoge)
return
}