mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-25 08:20:12 +01:00
The driver fuzzer, unlike the actual driver, provides a null `input_stream`, which caused the `language-server` subcommand to crash.
38 lines
1.1 KiB
C++
38 lines
1.1 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/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) {
|
|
*driver_env.error_stream
|
|
<< "error: language-server requires input_stream\n";
|
|
return {.success = false};
|
|
}
|
|
|
|
auto err =
|
|
LanguageServer::Run(driver_env.input_stream, *driver_env.output_stream,
|
|
*driver_env.error_stream);
|
|
if (!err.ok()) {
|
|
*driver_env.error_stream << "error: " << err.error() << "\n";
|
|
}
|
|
return {.success = err.ok()};
|
|
}
|
|
|
|
} // namespace Carbon
|