Skip to content

Commit 54e9082

Browse files
committed
add TODOs for similar cases
1 parent 0f4fb6b commit 54e9082

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

gopls/internal/analysis/modernize/slices.go

+3
Original file line numberDiff line numberDiff line change
@@ -210,6 +210,9 @@ func appendclipped(pass *analysis.Pass) {
210210
// x[:len(x):len(x)] (nonempty) res=x
211211
// x[:k:k] (nonempty)
212212
// 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.
213216
func clippedSlice(info *types.Info, e ast.Expr) (res ast.Expr, empty bool) {
214217
switch e := e.(type) {
215218
case *ast.SliceExpr:

gopls/internal/analysis/modernize/slicescontains.go

+3
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,9 @@ import (
4646
// It may change cardinality of effects of the "needle" expression.
4747
// (Mostly this appears to be a desirable optimization, avoiding
4848
// 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.
4952
func slicescontains(pass *analysis.Pass) {
5053
// Skip the analyzer in packages where its
5154
// fixes would create an import cycle.

0 commit comments

Comments
 (0)