mirror of
https://github.com/golang/go
synced 2024-11-05 20:06:10 -07:00
f6abc2cac8
Fixes golang/go#31078 Change-Id: I2227f64d839d65d7b46d43e1b90f5b1dc298bf6f Reviewed-on: https://go-review.googlesource.com/c/tools/+/172601 Run-TryBot: Rebecca Stambler <rstambler@golang.org> Reviewed-by: Ian Cottrell <iancottrell@google.com>
64 lines
1.5 KiB
Go
64 lines
1.5 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) hover(ctx context.Context, params *protocol.TextDocumentPositionParams) (*protocol.Hover, error) {
|
|
uri := span.NewURI(params.TextDocument.URI)
|
|
view := s.findView(ctx, uri)
|
|
f, m, err := newColumnMap(ctx, view, uri)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
spn, err := m.PointSpan(params.Position)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
identRange, err := spn.Range(m.Converter)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
ident, err := source.Identifier(ctx, view, f, identRange.Start)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
content, err := ident.Hover(ctx, nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
identSpan, err := ident.Range.Span()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
rng, err := m.Range(identSpan)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &protocol.Hover{
|
|
Contents: markupContent(content, s.preferredContentFormat),
|
|
Range: &rng,
|
|
}, nil
|
|
}
|
|
|
|
func markupContent(content string, kind protocol.MarkupKind) protocol.MarkupContent {
|
|
result := protocol.MarkupContent{
|
|
Kind: kind,
|
|
}
|
|
switch kind {
|
|
case protocol.PlainText:
|
|
result.Value = content
|
|
case protocol.Markdown:
|
|
result.Value = "```go\n" + content + "\n```"
|
|
}
|
|
return result
|
|
}
|