Skip to content

Commit 64422be

Browse files
authored
deps: bump LSP structs to gopls 0.8.4 (#947)
* deps: bump LSP structs * Update references
1 parent cf6b9d3 commit 64422be

File tree

5 files changed

+1370
-209
lines changed

5 files changed

+1370
-209
lines changed

internal/langserver/handlers/code_action.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ func (svc *service) textDocumentCodeAction(ctx context.Context, params lsp.CodeA
6868
Title: "Format Document",
6969
Kind: action,
7070
Edit: lsp.WorkspaceEdit{
71-
Changes: map[string][]lsp.TextEdit{
72-
string(dh.FullURI()): edits,
71+
Changes: map[lsp.DocumentURI][]lsp.TextEdit{
72+
lsp.DocumentURI(dh.FullURI()): edits,
7373
},
7474
},
7575
})

internal/langserver/handlers/complete_test.go

+54
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,12 @@ func TestModuleCompletion_withValidData(t *testing.T) {
139139
"id": 3,
140140
"result": {
141141
"isIncomplete": false,
142+
"itemDefaults": {
143+
"editRange": {
144+
"start": {"line": 0, "character": 0},
145+
"end": {"line": 0, "character": 0}
146+
}
147+
},
142148
"items": [
143149
{
144150
"label": "alias",
@@ -355,6 +361,12 @@ func TestModuleCompletion_withValidDataAndSnippets(t *testing.T) {
355361
"id": 3,
356362
"result": {
357363
"isIncomplete": false,
364+
"itemDefaults": {
365+
"editRange": {
366+
"start": {"line": 0, "character": 0},
367+
"end": {"line": 0, "character": 0}
368+
}
369+
},
358370
"items": [
359371
{
360372
"label": "alias",
@@ -663,6 +675,12 @@ func TestVarsCompletion_withValidData(t *testing.T) {
663675
"id": 4,
664676
"result": {
665677
"isIncomplete": false,
678+
"itemDefaults": {
679+
"editRange": {
680+
"start": {"line": 0, "character": 0},
681+
"end": {"line": 0, "character": 0}
682+
}
683+
},
666684
"items": [
667685
{
668686
"label": "test",
@@ -809,6 +827,12 @@ output "test" {
809827
"id": 3,
810828
"result": {
811829
"isIncomplete": false,
830+
"itemDefaults": {
831+
"editRange": {
832+
"start": {"line": 0, "character": 0},
833+
"end": {"line": 0, "character": 0}
834+
}
835+
},
812836
"items": [
813837
{
814838
"label": "providers",
@@ -891,6 +915,12 @@ output "test" {
891915
"id": 4,
892916
"result": {
893917
"isIncomplete": false,
918+
"itemDefaults": {
919+
"editRange": {
920+
"start": {"line": 0, "character": 0},
921+
"end": {"line": 0, "character": 0}
922+
}
923+
},
894924
"items": [
895925
{
896926
"label": "module.refname.testout",
@@ -1066,6 +1096,12 @@ output "test" {
10661096
"id": 3,
10671097
"result": {
10681098
"isIncomplete": false,
1099+
"itemDefaults": {
1100+
"editRange": {
1101+
"start": {"line": 0, "character": 0},
1102+
"end": {"line": 0, "character": 0}
1103+
}
1104+
},
10691105
"items": [
10701106
{
10711107
"label": "alpha-var",
@@ -1148,6 +1184,12 @@ output "test" {
11481184
"id": 4,
11491185
"result": {
11501186
"isIncomplete": false,
1187+
"itemDefaults": {
1188+
"editRange": {
1189+
"start": {"line": 0, "character": 0},
1190+
"end": {"line": 0, "character": 0}
1191+
}
1192+
},
11511193
"items": [
11521194
{
11531195
"label": "beta-var",
@@ -1230,6 +1272,12 @@ output "test" {
12301272
"id": 5,
12311273
"result": {
12321274
"isIncomplete": false,
1275+
"itemDefaults": {
1276+
"editRange": {
1277+
"start": {"line": 0, "character": 0},
1278+
"end": {"line": 0, "character": 0}
1279+
}
1280+
},
12331281
"items": [
12341282
{
12351283
"label": "module.alpha",
@@ -1386,6 +1434,12 @@ variable "ccc" {}
13861434
"id": 3,
13871435
"result": {
13881436
"isIncomplete": false,
1437+
"itemDefaults": {
1438+
"editRange": {
1439+
"start": {"line": 0, "character": 0},
1440+
"end": {"line": 0, "character": 0}
1441+
}
1442+
},
13891443
"items": [
13901444
{
13911445
"label": "var.aaa",

internal/langserver/handlers/initialize.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -219,8 +219,8 @@ func initializeResult(ctx context.Context) lsp.InitializeResult {
219219
DocumentFormattingProvider: true,
220220
DocumentSymbolProvider: true,
221221
WorkspaceSymbolProvider: true,
222-
Workspace: lsp.Workspace5Gn{
223-
WorkspaceFolders: lsp.WorkspaceFolders4Gn{
222+
Workspace: lsp.Workspace6Gn{
223+
WorkspaceFolders: lsp.WorkspaceFolders5Gn{
224224
Supported: true,
225225
ChangeNotifications: "workspace/didChangeWorkspaceFolders",
226226
},

internal/protocol/gen/gen.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
)
1313

1414
const (
15-
goplsRef = "gopls/v0.7.0"
15+
goplsRef = "gopls/v0.8.4"
1616
urlFmt = "https://raw.githubusercontent.com/golang/tools" +
1717
"/%s/internal/lsp/protocol/tsprotocol.go"
1818
)

0 commit comments

Comments
 (0)