mirror of
https://github.com/golang/go
synced 2024-11-19 00:24:41 -07:00
547ecf7b1e
This change switches Completion to use protocol positions instead of token.Pos. Change-Id: I012ce03c9316d8363938dd0156f485982b7e04fe Reviewed-on: https://go-review.googlesource.com/c/tools/+/190600 Reviewed-by: Ian Cottrell <iancottrell@google.com> Run-TryBot: Rebecca Stambler <rstambler@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
61 lines
1.4 KiB
Go
61 lines
1.4 KiB
Go
// Copyright 2019 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 lsp
|
|
|
|
import (
|
|
"context"
|
|
|
|
"golang.org/x/tools/internal/lsp/protocol"
|
|
"golang.org/x/tools/internal/lsp/source"
|
|
"golang.org/x/tools/internal/span"
|
|
)
|
|
|
|
func (s *Server) rename(ctx context.Context, params *protocol.RenameParams) (*protocol.WorkspaceEdit, error) {
|
|
uri := span.NewURI(params.TextDocument.URI)
|
|
view := s.session.ViewOf(uri)
|
|
f, err := getGoFile(ctx, view, uri)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
m, err := getMapper(ctx, f)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
spn, err := m.PointSpan(params.Position)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
rng, err := spn.Range(m.Converter)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
ident, err := source.Identifier(ctx, f, rng.Start)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
edits, err := ident.Rename(ctx, params.NewName)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
changes := make(map[string][]protocol.TextEdit)
|
|
for uri, textEdits := range edits {
|
|
f, err := getGoFile(ctx, view, uri)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
m, err := getMapper(ctx, f)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
protocolEdits, err := source.ToProtocolEdits(m, textEdits)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
changes[string(uri)] = protocolEdits
|
|
}
|
|
|
|
return &protocol.WorkspaceEdit{Changes: &changes}, nil
|
|
}
|