mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 21:40:12 +01:00
Mainly because "sorting_diagnostic_consumer" is legacy, since `SortingDiagnosticConsumer` became `SortingConsumer`. Also better reflecting contents of these files. Where I'm not renaming, I'm less positive about dropping "diagnostics" from "file_diagnostics" and "null_diagnostics" (which contain both a consumer and emitter, and "null.h" seems like poor naming), so not doing that here. Also "diagnostic.h" contains `struct Diagnostic`, so is a decent fit. Assisted-by: Google Antigravity with Gemini 3 Flash
38 lines
1.2 KiB
C++
38 lines
1.2 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 "toolchain/driver/language_server_subcommand.h"
|
|
|
|
#include "toolchain/diagnostics/consumer.h"
|
|
#include "toolchain/language_server/language_server.h"
|
|
|
|
namespace Carbon {
|
|
|
|
static constexpr CommandLine::CommandInfo SubcommandInfo = {
|
|
.name = "language-server",
|
|
.help = R"""(
|
|
Runs the language server.
|
|
)""",
|
|
};
|
|
|
|
LanguageServerSubcommand::LanguageServerSubcommand()
|
|
: DriverSubcommand(SubcommandInfo) {}
|
|
|
|
auto LanguageServerSubcommand::Run(DriverEnv& driver_env) -> DriverResult {
|
|
if (!driver_env.input_stream) {
|
|
CARBON_DIAGNOSTIC(LanguageServerMissingInputStream, Error,
|
|
"language-server requires input_stream");
|
|
driver_env.emitter.Emit(LanguageServerMissingInputStream);
|
|
return {.success = false};
|
|
}
|
|
|
|
bool success =
|
|
LanguageServer::Run(*driver_env.installation, driver_env.input_stream,
|
|
*driver_env.output_stream, *driver_env.error_stream,
|
|
driver_env.vlog_stream, driver_env.consumer);
|
|
return {.success = success};
|
|
}
|
|
|
|
} // namespace Carbon
|