mirror of
https://github.com/golang/go
synced 2024-11-05 16:46:10 -07:00
abb57c682a
This change implements support for textDocument/hover when it comes to go.mod files. Updates golang/go#36501 Change-Id: Ie7da0194bb972955b7ab9cf7b9c9972bd9f4b8a9 Reviewed-on: https://go-review.googlesource.com/c/tools/+/220359 Run-TryBot: Rohan Challa <rohan@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Rebecca Stambler <rstambler@golang.org>
28 lines
743 B
Go
28 lines
743 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/mod"
|
|
"golang.org/x/tools/internal/lsp/protocol"
|
|
"golang.org/x/tools/internal/lsp/source"
|
|
)
|
|
|
|
func (s *Server) hover(ctx context.Context, params *protocol.HoverParams) (*protocol.Hover, error) {
|
|
snapshot, fh, ok, err := s.beginFileRequest(params.TextDocument.URI, source.UnknownKind)
|
|
if !ok {
|
|
return nil, err
|
|
}
|
|
switch fh.Identity().Kind {
|
|
case source.Mod:
|
|
return mod.Hover(ctx, snapshot, fh, params.Position)
|
|
case source.Go:
|
|
return source.Hover(ctx, snapshot, fh, params.Position)
|
|
}
|
|
return nil, nil
|
|
}
|