File tree 2 files changed +6
-0
lines changed
gopls/internal/analysis/modernize
2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -210,6 +210,9 @@ func appendclipped(pass *analysis.Pass) {
210
210
// x[:len(x):len(x)] (nonempty) res=x
211
211
// x[:k:k] (nonempty)
212
212
// slices.Clip(x) (nonempty) res=x
213
+ //
214
+ // TODO(adonovan): Add a check that the expression x has no side effects in
215
+ // case x[:len(x):len(x)] -> x. Now the program behavior may change.
213
216
func clippedSlice (info * types.Info , e ast.Expr ) (res ast.Expr , empty bool ) {
214
217
switch e := e .(type ) {
215
218
case * ast.SliceExpr :
Original file line number Diff line number Diff line change @@ -46,6 +46,9 @@ import (
46
46
// It may change cardinality of effects of the "needle" expression.
47
47
// (Mostly this appears to be a desirable optimization, avoiding
48
48
// redundantly repeated evaluation.)
49
+ //
50
+ // TODO(adonovan): Add a check that needle/predicate expression from
51
+ // if-statement has no effects. Now the program behavior may change.
49
52
func slicescontains (pass * analysis.Pass ) {
50
53
// Skip the analyzer in packages where its
51
54
// fixes would create an import cycle.
You can’t perform that action at this time.
0 commit comments