blob: 7efe98bdc6695db235d7f301db65380b44274ee1 [file] [log] [blame]
// Copyright 2022 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/gopls/internal/lsp/mod"
"golang.org/x/tools/gopls/internal/lsp/protocol"
"golang.org/x/tools/gopls/internal/lsp/source"
)
func (s *Server) inlayHint(ctx context.Context, params *protocol.InlayHintParams) ([]protocol.InlayHint, error) {
snapshot, fh, ok, release, err := s.beginFileRequest(ctx, params.TextDocument.URI, source.UnknownKind)
defer release()
if !ok {
return nil, err
}
switch snapshot.View().FileKind(fh) {
case source.Mod:
return mod.InlayHint(ctx, snapshot, fh, params.Range)
case source.Go:
return source.InlayHint(ctx, snapshot, fh, params.Range)
}
return nil, nil
}