1
0
mirror of https://github.com/golang/go synced 2024-11-18 09:04:49 -07:00

internal/lsp: implement go to definition

This enables go to definition for the lsp.
It has one known non working case (where the filenames have $GOROOT in them)

Change-Id: I142c6e04b8691c5076dfcd55592ea710b4b361a4
Reviewed-on: https://go-review.googlesource.com/c/148158
Reviewed-by: Rebecca Stambler <rstambler@golang.org>
This commit is contained in:
Ian Cottrell 2018-11-06 14:04:07 -05:00
parent d0600fd9f1
commit 15ad1aa0cb
3 changed files with 83 additions and 2 deletions

View File

@ -5,6 +5,7 @@
package lsp
import (
"fmt"
"go/token"
"strconv"
"strings"
@ -19,6 +20,9 @@ func diagnostics(v *source.View, uri source.URI) (map[string][]protocol.Diagnost
if err != nil {
return nil, err
}
if pkg == nil {
return nil, fmt.Errorf("package for %v not found", uri)
}
reports := make(map[string][]protocol.Diagnostic)
for _, filename := range pkg.GoFiles {
reports[filename] = []protocol.Diagnostic{}

View File

@ -51,6 +51,7 @@ func (s *server) Initialize(ctx context.Context, params *protocol.InitializePara
CompletionProvider: protocol.CompletionOptions{
TriggerCharacters: []string{"."},
},
DefinitionProvider: true,
},
}, nil
}
@ -170,8 +171,18 @@ func (s *server) SignatureHelp(context.Context, *protocol.TextDocumentPositionPa
return nil, notImplemented("SignatureHelp")
}
func (s *server) Definition(context.Context, *protocol.TextDocumentPositionParams) ([]protocol.Location, error) {
return nil, notImplemented("Definition")
func (s *server) Definition(ctx context.Context, params *protocol.TextDocumentPositionParams) ([]protocol.Location, error) {
f := s.view.GetFile(source.URI(params.TextDocument.URI))
tok, err := f.GetToken()
if err != nil {
return nil, err
}
pos := fromProtocolPosition(tok, params.Position)
r, err := source.Definition(ctx, f, pos)
if err != nil {
return nil, err
}
return []protocol.Location{toProtocolLocation(s.view, r)}, nil
}
func (s *server) TypeDefinition(context.Context, *protocol.TextDocumentPositionParams) ([]protocol.Location, error) {

View File

@ -0,0 +1,66 @@
// Copyright 2018 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"
"fmt"
"go/ast"
"go/token"
"golang.org/x/tools/go/ast/astutil"
)
func Definition(ctx context.Context, f *File, pos token.Pos) (Range, error) {
fAST, err := f.GetAST()
if err != nil {
return Range{}, err
}
pkg, err := f.GetPackage()
if err != nil {
return Range{}, err
}
ident, err := findIdentifier(fAST, pos)
if err != nil {
return Range{}, err
}
if ident == nil {
return Range{}, fmt.Errorf("definition was not a valid identifier")
}
obj := pkg.TypesInfo.ObjectOf(ident)
if obj == nil {
return Range{}, fmt.Errorf("no object")
}
return Range{
Start: obj.Pos(),
End: obj.Pos() + token.Pos(len([]byte(obj.Name()))), // TODO: use real range of obj
}, nil
}
// findIdentifier returns the ast.Ident for a position
// in a file, accounting for a potentially incomplete selector.
func findIdentifier(f *ast.File, pos token.Pos) (*ast.Ident, error) {
path, _ := astutil.PathEnclosingInterval(f, pos, pos)
if path == nil {
return nil, fmt.Errorf("can't find node enclosing position")
}
// If the position is not an identifier but immediately follows
// an identifier or selector period (as is common when
// requesting a completion), use the path to the preceding node.
if ident, ok := path[0].(*ast.Ident); ok {
return ident, nil
}
path, _ = astutil.PathEnclosingInterval(f, pos-1, pos-1)
if path == nil {
return nil, nil
}
switch prev := path[0].(type) {
case *ast.Ident:
return prev, nil
case *ast.SelectorExpr:
return prev.Sel, nil
}
return nil, nil
}