2019-03-25 18:56:05 -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.
|
|
|
|
|
|
|
|
package source
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"go/ast"
|
|
|
|
|
|
|
|
"golang.org/x/tools/go/ast/astutil"
|
2019-09-05 16:54:05 -06:00
|
|
|
"golang.org/x/tools/internal/lsp/protocol"
|
2019-03-25 18:56:05 -06:00
|
|
|
"golang.org/x/tools/internal/span"
|
2019-08-13 13:07:39 -06:00
|
|
|
"golang.org/x/tools/internal/telemetry/trace"
|
2019-08-06 13:13:11 -06:00
|
|
|
errors "golang.org/x/xerrors"
|
2019-03-25 18:56:05 -06:00
|
|
|
)
|
|
|
|
|
2019-09-05 16:54:05 -06:00
|
|
|
func Highlight(ctx context.Context, view View, uri span.URI, pos protocol.Position) ([]protocol.Range, error) {
|
2019-06-26 20:46:12 -06:00
|
|
|
ctx, done := trace.StartSpan(ctx, "source.Highlight")
|
|
|
|
defer done()
|
2019-07-11 19:05:55 -06:00
|
|
|
|
2019-09-05 16:54:05 -06:00
|
|
|
file, _, m, err := fileToMapper(ctx, view, uri)
|
|
|
|
if err != nil {
|
2019-07-11 19:05:55 -06:00
|
|
|
return nil, err
|
2019-05-20 13:23:02 -06:00
|
|
|
}
|
2019-09-05 16:54:05 -06:00
|
|
|
spn, err := m.PointSpan(pos)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
rng, err := spn.Range(m.Converter)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
path, _ := astutil.PathEnclosingInterval(file, rng.Start, rng.Start)
|
2019-03-25 18:56:05 -06:00
|
|
|
if len(path) == 0 {
|
2019-09-12 13:13:05 -06:00
|
|
|
return nil, errors.Errorf("no enclosing position found for %f:%f", pos.Line, pos.Character)
|
2019-03-25 18:56:05 -06:00
|
|
|
}
|
|
|
|
id, ok := path[0].(*ast.Ident)
|
|
|
|
if !ok {
|
2019-09-12 13:13:05 -06:00
|
|
|
return nil, errors.Errorf("%f:%f is not an identifier", pos.Line, pos.Character)
|
2019-03-25 18:56:05 -06:00
|
|
|
}
|
2019-09-05 16:54:05 -06:00
|
|
|
var result []protocol.Range
|
2019-03-25 18:56:05 -06:00
|
|
|
if id.Obj != nil {
|
|
|
|
ast.Inspect(path[len(path)-1], func(n ast.Node) bool {
|
|
|
|
if n, ok := n.(*ast.Ident); ok && n.Obj == id.Obj {
|
2019-09-05 16:54:05 -06:00
|
|
|
rng, err := nodeToProtocolRange(ctx, view, n)
|
2019-03-25 18:56:05 -06:00
|
|
|
if err == nil {
|
2019-09-05 16:54:05 -06:00
|
|
|
result = append(result, rng)
|
2019-03-25 18:56:05 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
})
|
|
|
|
}
|
2019-06-21 15:00:02 -06:00
|
|
|
return result, nil
|
2019-03-25 18:56:05 -06:00
|
|
|
}
|