2018-11-12 14:53:10 -07:00
|
|
|
// Copyright 2018 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 (
|
2019-04-17 13:37:20 -06:00
|
|
|
"context"
|
|
|
|
|
2018-11-12 14:53:10 -07:00
|
|
|
"golang.org/x/tools/internal/lsp/protocol"
|
|
|
|
"golang.org/x/tools/internal/lsp/source"
|
2019-04-17 13:37:20 -06:00
|
|
|
"golang.org/x/tools/internal/span"
|
2019-08-13 13:07:39 -06:00
|
|
|
"golang.org/x/tools/internal/telemetry/log"
|
|
|
|
"golang.org/x/tools/internal/telemetry/tag"
|
2018-11-12 14:53:10 -07:00
|
|
|
)
|
|
|
|
|
2019-09-07 15:01:26 -06:00
|
|
|
func (s *Server) signatureHelp(ctx context.Context, params *protocol.SignatureHelpParams) (*protocol.SignatureHelp, error) {
|
2019-04-17 13:37:20 -06:00
|
|
|
uri := span.NewURI(params.TextDocument.URI)
|
2019-11-15 10:43:45 -07:00
|
|
|
view, err := s.session.ViewOf(uri)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2019-11-20 14:38:43 -07:00
|
|
|
snapshot := view.Snapshot()
|
2020-01-10 15:37:29 -07:00
|
|
|
fh, err := snapshot.GetFile(uri)
|
2019-08-16 11:49:17 -06:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2019-12-17 16:57:54 -07:00
|
|
|
if fh.Identity().Kind != source.Go {
|
2019-12-10 09:51:34 -07:00
|
|
|
return nil, nil
|
|
|
|
}
|
2020-02-04 20:44:33 -07:00
|
|
|
info, activeParameter, err := source.SignatureHelp(ctx, snapshot, fh, params.Position)
|
2019-04-17 13:37:20 -06:00
|
|
|
if err != nil {
|
2019-09-05 14:58:50 -06:00
|
|
|
log.Print(ctx, "no signature help", tag.Of("At", params.Position), tag.Of("Failure", err))
|
2019-06-07 20:07:33 -06:00
|
|
|
return nil, nil
|
2019-04-17 13:37:20 -06:00
|
|
|
}
|
2018-11-12 14:53:10 -07:00
|
|
|
return &protocol.SignatureHelp{
|
2020-02-04 20:44:33 -07:00
|
|
|
Signatures: []protocol.SignatureInformation{*info},
|
|
|
|
ActiveParameter: float64(activeParameter),
|
|
|
|
}, nil
|
2018-11-12 14:53:10 -07:00
|
|
|
}
|