mirror of
https://github.com/golang/go
synced 2024-11-18 23:44:43 -07:00
bc1376d635
This change makes sure that we only return files that contain the given position. There are a few instances of needing to look up files by URI in the internal/lsp/cache package, so use an unexported package for that. This allows us to remove some code in the implementations code. Change-Id: Ifa7a62c67271826e6c632e4c88667d60f8b760c4 Reviewed-on: https://go-review.googlesource.com/c/tools/+/206880 Run-TryBot: Rebecca Stambler <rstambler@golang.org> Reviewed-by: Michael Matloob <matloob@golang.org>
28 lines
728 B
Go
28 lines
728 B
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) implementation(ctx context.Context, params *protocol.ImplementationParams) ([]protocol.Location, error) {
|
|
uri := span.NewURI(params.TextDocument.URI)
|
|
view := s.session.ViewOf(uri)
|
|
f, err := view.GetFile(ctx, uri)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
ident, err := source.Identifier(ctx, view, f, params.Position)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return ident.Implementation(ctx)
|
|
}
|