some deletions
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / golang.org / x / tools@v0.0.0-20201105173854-bc9fc8d8c4bc / internal / lsp / cmd / test / references.go
diff --git a/.config/coc/extensions/coc-go-data/tools/pkg/mod/golang.org/x/tools@v0.0.0-20201105173854-bc9fc8d8c4bc/internal/lsp/cmd/test/references.go b/.config/coc/extensions/coc-go-data/tools/pkg/mod/golang.org/x/tools@v0.0.0-20201105173854-bc9fc8d8c4bc/internal/lsp/cmd/test/references.go
deleted file mode 100644 (file)
index 66d0d06..0000000
+++ /dev/null
@@ -1,49 +0,0 @@
-// 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 cmdtest
-
-import (
-       "fmt"
-       "sort"
-       "testing"
-
-       "golang.org/x/tools/internal/span"
-)
-
-func (r *runner) References(t *testing.T, spn span.Span, itemList []span.Span) {
-       for _, includeDeclaration := range []bool{true, false} {
-               t.Run(fmt.Sprintf("refs-declaration-%v", includeDeclaration), func(t *testing.T) {
-                       var itemStrings []string
-                       for i, s := range itemList {
-                               // We don't want the first result if we aren't including the declaration.
-                               if i == 0 && !includeDeclaration {
-                                       continue
-                               }
-                               itemStrings = append(itemStrings, fmt.Sprint(s))
-                       }
-                       sort.Strings(itemStrings)
-                       var expect string
-                       for _, s := range itemStrings {
-                               expect += s + "\n"
-                       }
-                       expect = r.Normalize(expect)
-
-                       uri := spn.URI()
-                       filename := uri.Filename()
-                       target := filename + fmt.Sprintf(":%v:%v", spn.Start().Line(), spn.Start().Column())
-                       args := []string{"references"}
-                       if includeDeclaration {
-                               args = append(args, "-d")
-                       }
-                       args = append(args, target)
-                       got, stderr := r.NormalizeGoplsCmd(t, args...)
-                       if stderr != "" {
-                               t.Errorf("references failed for %s: %s", target, stderr)
-                       } else if expect != got {
-                               t.Errorf("references failed for %s expected:\n%s\ngot:\n%s", target, expect, got)
-                       }
-               })
-       }
-}