Skip to content

Commit 726c727

Browse files
cuonglmgopherbot
authored andcommitted
gopls/internal/lsp: enable min/max builtin completion test
For golang/go#59488 Change-Id: I93680138c90750454b4d94af6dc84fe942c9dd34 Reviewed-on: https://go-review.googlesource.com/c/tools/+/498516 Run-TryBot: Cuong Manh Le <[email protected]> Reviewed-by: Robert Findley <[email protected]> Reviewed-by: Matthew Dempsky <[email protected]> TryBot-Result: Gopher Robot <[email protected]> Auto-Submit: Cuong Manh Le <[email protected]> gopls-CI: kokoro <[email protected]>
1 parent 86c93e8 commit 726c727

File tree

2 files changed

+4
-17
lines changed

2 files changed

+4
-17
lines changed

gopls/internal/lsp/completion_test.go

+2-15
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ func (r *runner) Completion(t *testing.T, src span.Span, test tests.Completion,
2525
opts.LiteralCompletions = strings.Contains(string(src.URI()), "literal")
2626
opts.ExperimentalPostfixCompletions = strings.Contains(string(src.URI()), "postfix")
2727
})
28-
got = filterSkipCompletionItems(tests.FilterBuiltins(src, got))
29-
want := filterSkipCompletionItems(expected(t, test, items))
28+
got = tests.FilterBuiltins(src, got)
29+
want := expected(t, test, items)
3030
if diff := tests.DiffCompletionItems(want, got); diff != "" {
3131
t.Errorf("mismatching completion items (-want +got):\n%s", diff)
3232
}
@@ -175,16 +175,3 @@ func (r *runner) callCompletion(t *testing.T, src span.Span, options func(*sourc
175175
}
176176
return list.Items
177177
}
178-
179-
func filterSkipCompletionItems(items []protocol.CompletionItem) []protocol.CompletionItem {
180-
n := 0
181-
for _, item := range items {
182-
// TODO(cuonglm): remove once https://go-review.googlesource.com/c/go/+/498495 land.
183-
if item.Label == "max" || item.Label == "min" {
184-
continue
185-
}
186-
items[n] = item
187-
n++
188-
}
189-
return items[:n]
190-
}

gopls/internal/lsp/testdata/builtins/builtins.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ package builtins
2828
/* int8 */ //@item(int8, "int8", "", "type")
2929
/* iota */ //@item(iota, "iota", "", "const")
3030
/* len(v Type) int */ //@item(len, "len", "func(v Type) int", "func")
31-
/* max(x Type, y ...Type) Type */ //@item(max, "max", "func(x Type, y ...Type) Type", "func")
32-
/* min(y Type, y ...Type) Type */ //@item(min, "min", "func(y Type, y ...Type) Type", "func")
31+
/* max(x T, y ...T) T */ //@item(max, "max", "func(x T, y ...T) T", "func")
32+
/* min(y T, y ...T) T */ //@item(min, "min", "func(x T, y ...T) T", "func")
3333
/* make(t Type, size ...int) Type */ //@item(make, "make", "func(t Type, size ...int) Type", "func")
3434
/* new(Type) *Type */ //@item(new, "new", "func(Type) *Type", "func")
3535
/* nil */ //@item(_nil, "nil", "", "var")

0 commit comments

Comments
 (0)