Giant blob of minor changes
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / golang.org / x / tools@v0.0.0-20201028153306-37f0764111ff / internal / lsp / workspace_symbol.go
1 // Copyright 2020 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
4
5 package lsp
6
7 import (
8         "context"
9
10         "golang.org/x/tools/internal/event"
11         "golang.org/x/tools/internal/lsp/protocol"
12         "golang.org/x/tools/internal/lsp/source"
13 )
14
15 func (s *Server) symbol(ctx context.Context, params *protocol.WorkspaceSymbolParams) ([]protocol.SymbolInformation, error) {
16         ctx, done := event.Start(ctx, "lsp.Server.symbol")
17         defer done()
18
19         views := s.session.Views()
20         matcher := s.session.Options().SymbolMatcher
21         style := s.session.Options().SymbolStyle
22         return source.WorkspaceSymbols(ctx, matcher, style, views, params.Query)
23 }