Files
carbon-lang/toolchain/language_server/handle_initialize.cpp
T
Richard Smith c78751338b language-server: Support simple semantic queries. (#7639)
Add support for "jump to declaration", "find references", type
information on hover. This support is strictly single-file for now; only
references and declarations within the same file are found. We could go
a bit beyond that, but to properly handle cross-file references we'll
need to build an index and a compilation database, which is beyond the
scope of this change.

On hover, we provide the type information for the instruction under the
cursor as-is. This is frequently not very useful, as the type of a
function F is simply "<type of F>", but is a starting point for richer
information.

Assisted-by: Claude Code
2026-08-19 14:35:05 +00:00

56 lines
2.3 KiB
C++

// Part of the Carbon Language project, under the Apache License v2.0 with LLVM
// Exceptions. See /LICENSE for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
#include <utility>
#include "llvm/ADT/STLExtras.h"
#include "toolchain/language_server/handle.h"
namespace Carbon::LanguageServer {
// Picks the encoding used to measure `Position::character` on the wire.
// Use UTF-8 if offered, since Carbon source is natively UTF-8. Otherwise fall
// back to UTF-16, to support VS Code and old LSP clients.
static auto NegotiatePositionEncoding(
const clang::clangd::ClientCapabilities& capabilities)
-> clang::clangd::OffsetEncoding {
if (capabilities.PositionEncodings &&
llvm::is_contained(*capabilities.PositionEncodings,
clang::clangd::OffsetEncoding::UTF8)) {
return clang::clangd::OffsetEncoding::UTF8;
}
return clang::clangd::OffsetEncoding::UTF16;
}
auto HandleInitialize(
Context& context, const clang::clangd::InitializeParams& params,
llvm::function_ref<auto(llvm::Expected<llvm::json::Object>)->void> on_done)
-> void {
auto encoding = NegotiatePositionEncoding(params.capabilities);
context.SetPositionEncoding(encoding);
llvm::json::Object capabilities{{"declarationProvider", true},
{"definitionProvider", true},
{"documentSymbolProvider", true},
{"hoverProvider", true},
{"positionEncoding", encoding},
{"referencesProvider", true},
{"textDocumentSync", /*Incremental=*/2},
{"typeDefinitionProvider", true}};
llvm::json::Object reply{{"capabilities", std::move(capabilities)}};
on_done(reply);
}
// Implements `initialized`:
// https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#initialized
auto HandleInitialized(Context& /*context*/,
const clang::clangd::NoParams& /*params*/) -> void {
// Nothing to do, but every client sends this, so we handle it rather than
// warning about an unsupported notification.
// TODO: This is when we would use `client/registerCapability` for any
// capabilities we want to register dynamically.
}
} // namespace Carbon::LanguageServer