mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 21:20:11 +01:00
This was substantially slowing down the overall test suite. Fixes #7453 Assisted-by: Gemini via Antigravity
53 lines
1.5 KiB
C++
53 lines
1.5 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::BuildOptions(CommandLine::CommandBuilder& b)
|
|
-> void {
|
|
b.AddFlag(
|
|
{
|
|
.name = "prelude-import",
|
|
.help = R"""(
|
|
Whether to use the implicit prelude import. Enabled by default.
|
|
)""",
|
|
},
|
|
[&](auto& arg_b) {
|
|
arg_b.Default(true);
|
|
arg_b.Set(&prelude_import_);
|
|
});
|
|
}
|
|
|
|
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, prelude_import_);
|
|
return {.success = success};
|
|
}
|
|
|
|
} // namespace Carbon
|