Giant blob of minor changes
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / golang.org / x / tools@v0.0.0-20201105173854-bc9fc8d8c4bc / internal / lsp / testdata / godef / a / a_test.go.golden
1 -- TestA-definition --
2 godef/a/a_test.go:7:6-11: defined here as ```go
3 func TestA(t *testing.T)
4 ```
5 -- TestA-definition-json --
6 {
7         "span": {
8                 "uri": "file://godef/a/a_test.go",
9                 "start": {
10                         "line": 7,
11                         "column": 6,
12                         "offset": 39
13                 },
14                 "end": {
15                         "line": 7,
16                         "column": 11,
17                         "offset": 44
18                 }
19         },
20         "description": "```go\nfunc TestA(t *testing.T)\n```"
21 }
22
23 -- TestA-hover --
24 ```go
25 func TestA(t *testing.T)
26 ```