-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
gopls/internal/lsp/source: move edit logic into the protocol package
Change-Id: I8a2dcafc109bf298b6edfe7a7029f8b9098880d6 Reviewed-on: https://go-review.googlesource.com/c/tools/+/543920 Reviewed-by: Alan Donovan <adonovan@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submit: Robert Findley <rfindley@google.com>
- Loading branch information
Showing
14 changed files
with
80 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
// Copyright 2023 The Go Authors. All rights reserved. | ||
// Use of this source code is governed by a BSD-style | ||
// license that can be found in the LICENSE file. | ||
|
||
package protocol | ||
|
||
import "golang.org/x/tools/internal/diff" | ||
|
||
// EditsFromDiffEdits converts diff.Edits to a non-nil slice of LSP TextEdits. | ||
// See https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#textEditArray | ||
func EditsFromDiffEdits(m *Mapper, edits []diff.Edit) ([]TextEdit, error) { | ||
// LSP doesn't require TextEditArray to be sorted: | ||
// this is the receiver's concern. But govim, and perhaps | ||
// other clients have historically relied on the order. | ||
edits = append([]diff.Edit(nil), edits...) | ||
diff.SortEdits(edits) | ||
|
||
result := make([]TextEdit, len(edits)) | ||
for i, edit := range edits { | ||
rng, err := m.OffsetRange(edit.Start, edit.End) | ||
if err != nil { | ||
return nil, err | ||
} | ||
result[i] = TextEdit{ | ||
Range: rng, | ||
NewText: edit.New, | ||
} | ||
} | ||
return result, nil | ||
} | ||
|
||
// EditsToDiffEdits converts LSP TextEdits to diff.Edits. | ||
// See https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#textEditArray | ||
func EditsToDiffEdits(m *Mapper, edits []TextEdit) ([]diff.Edit, error) { | ||
if edits == nil { | ||
return nil, nil | ||
} | ||
result := make([]diff.Edit, len(edits)) | ||
for i, edit := range edits { | ||
start, end, err := m.RangeOffsets(edit.Range) | ||
if err != nil { | ||
return nil, err | ||
} | ||
result[i] = diff.Edit{ | ||
Start: start, | ||
End: end, | ||
New: edit.NewText, | ||
} | ||
} | ||
return result, nil | ||
} | ||
|
||
// ApplyEdits applies the patch (edits) to m.Content and returns the result. | ||
// It also returns the edits converted to diff-package form. | ||
func ApplyEdits(m *Mapper, edits []TextEdit) ([]byte, []diff.Edit, error) { | ||
diffEdits, err := EditsToDiffEdits(m, edits) | ||
if err != nil { | ||
return nil, nil, err | ||
} | ||
out, err := diff.ApplyBytes(m.Content, diffEdits) | ||
return out, diffEdits, err | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters