1
0
mirror of https://github.com/golang/go synced 2024-11-18 19:54:44 -07:00
go/internal/lsp/cmd/test
Francesco Renzi 6d8f1af9cc tools/gopls: add cmd support for signature
This change adds command line support for signatureHelp.
If the location provided corresponds to a function, that
function signature is displayed. In case that function is
documented the related comment is shown as well.

Example:

$ gopls signature ~/tmp/foo/main.go:7:5
$
$ Next(n int) []byte
$
$ Next returns a slice containing the next n bytes from
$ the buffer, advancing the buffer as if the bytes had been
$ returned by Read.

Note that linebreaks shown in the comment are just to adhere
commit message guidelines. The command prints documentation
comments on one line.

Updates golang/go#32875

Change-Id: Ib0dcc3267c594f95d80b74f289c1235c2c0c5f64
Reviewed-on: https://go-review.googlesource.com/c/tools/+/204057
Reviewed-by: Rebecca Stambler <rstambler@golang.org>
Run-TryBot: Rebecca Stambler <rstambler@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
2019-10-31 22:07:37 +00:00
..
check.go internal/lsp: add a test to make sure we handle bad imports 2019-10-17 20:52:05 +00:00
cmdtest.go tools/gopls: add cmd support for signature 2019-10-31 22:07:37 +00:00
definition.go internal/lsp: use options hooks to install diff driver 2019-10-11 16:38:31 +00:00
format.go internal/lsp: use options hooks to install diff driver 2019-10-11 16:38:31 +00:00
imports.go tools/gopls: add command line support for imports 2019-10-29 17:11:47 +00:00
references.go tools/gopls: add cmd support for references 2019-10-25 16:51:12 +00:00
rename.go internal/lsp: use options hooks to install diff driver 2019-10-11 16:38:31 +00:00
signature.go tools/gopls: add cmd support for signature 2019-10-31 22:07:37 +00:00
suggested_fix.go tools/gopls: add command line support for suggestedfix 2019-10-30 23:29:56 +00:00