mirror of
https://github.com/golang/go
synced 2024-11-18 19:54:44 -07:00
21 lines
598 B
Go
21 lines
598 B
Go
|
// 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/trace"
|
||
|
)
|
||
|
|
||
|
func (s *Server) symbol(ctx context.Context, params *protocol.WorkspaceSymbolParams) ([]protocol.SymbolInformation, error) {
|
||
|
ctx, done := trace.StartSpan(ctx, "lsp.Server.symbol")
|
||
|
defer done()
|
||
|
|
||
|
return source.WorkspaceSymbols(ctx, s.session.Views(), params.Query)
|
||
|
}
|