blob: d26a507d76660a335a1ceb109740ab022400f724 [file] [log] [blame]
// 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"
"golang.org/x/tools/internal/telemetry/event"
)
func (s *Server) symbol(ctx context.Context, params *protocol.WorkspaceSymbolParams) ([]protocol.SymbolInformation, error) {
ctx, done := event.StartSpan(ctx, "lsp.Server.symbol")
defer done()
return source.WorkspaceSymbols(ctx, s.session.Views(), params.Query)
}