2019-06-11 13:09:43 -06:00
|
|
|
// 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.
|
|
|
|
|
2019-06-07 08:04:22 -06:00
|
|
|
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) references(ctx context.Context, params *protocol.ReferenceParams) ([]protocol.Location, error) {
|
|
|
|
uri := span.NewURI(params.TextDocument.URI)
|
|
|
|
view := s.session.ViewOf(uri)
|
|
|
|
f, m, err := getGoFile(ctx, view, uri)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
spn, err := m.PointSpan(params.Position)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
rng, err := spn.Range(m.Converter)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
// Find all references to the identifier at the position.
|
|
|
|
ident, err := source.Identifier(ctx, view, f, rng.Start)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
references, err := ident.References(ctx)
|
|
|
|
if err != nil {
|
2019-06-24 14:34:21 -06:00
|
|
|
view.Session().Logger().Errorf(ctx, "no references for %s: %v", ident.Name, err)
|
2019-06-07 08:04:22 -06:00
|
|
|
}
|
|
|
|
// Get the location of each reference to return as the result.
|
|
|
|
locations := make([]protocol.Location, 0, len(references))
|
2019-06-26 16:05:29 -06:00
|
|
|
seen := make(map[span.Span]bool)
|
2019-06-07 08:04:22 -06:00
|
|
|
for _, ref := range references {
|
|
|
|
refSpan, err := ref.Range.Span()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2019-06-26 16:05:29 -06:00
|
|
|
if seen[refSpan] {
|
|
|
|
continue // already added this location
|
|
|
|
}
|
|
|
|
seen[refSpan] = true
|
|
|
|
|
2019-06-07 08:04:22 -06:00
|
|
|
_, refM, err := getSourceFile(ctx, view, refSpan.URI())
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
loc, err := refM.Location(refSpan)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
locations = append(locations, loc)
|
|
|
|
}
|
|
|
|
return locations, nil
|
|
|
|
}
|