mirror of
https://github.com/golang/go
synced 2024-11-19 01:24:39 -07:00
25 lines
654 B
Go
25 lines
654 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
|
||
|
}
|
||
|
|
||
|
return source.Implementation(ctx, view, f, params.Position)
|
||
|
}
|