2020-01-05 03:46:20 -07:00
|
|
|
// Copyright 2020 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 lsp
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"golang.org/x/tools/internal/lsp/protocol"
|
|
|
|
"golang.org/x/tools/internal/lsp/source"
|
2020-03-07 19:28:21 -07:00
|
|
|
"golang.org/x/tools/internal/telemetry/event"
|
2020-01-05 03:46:20 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
func (s *Server) symbol(ctx context.Context, params *protocol.WorkspaceSymbolParams) ([]protocol.SymbolInformation, error) {
|
2020-03-07 19:28:21 -07:00
|
|
|
ctx, done := event.StartSpan(ctx, "lsp.Server.symbol")
|
2020-01-05 03:46:20 -07:00
|
|
|
defer done()
|
|
|
|
|
|
|
|
return source.WorkspaceSymbols(ctx, s.session.Views(), params.Query)
|
|
|
|
}
|