| 123456789101112131415161718192021222324 |
- // 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
- #ifndef CARBON_TOOLCHAIN_LANGUAGE_SERVER_LANGUAGE_SERVER_H_
- #define CARBON_TOOLCHAIN_LANGUAGE_SERVER_LANGUAGE_SERVER_H_
- #include "common/ostream.h"
- #include "toolchain/diagnostics/diagnostic_consumer.h"
- namespace Carbon::LanguageServer {
- // Start the language server. input_stream and output_stream are used by LSP;
- // error_stream is primarily for errors that don't fit into LSP. Returns true if
- // the server cleanly exits.
- //
- // This is thread-hostile because `clangd::LoggingSession` relies on a global.
- auto Run(FILE* input_stream, llvm::raw_ostream& output_stream,
- llvm::raw_ostream& error_stream, llvm::raw_ostream* vlog_stream,
- DiagnosticConsumer& consumer) -> bool;
- } // namespace Carbon::LanguageServer
- #endif // CARBON_TOOLCHAIN_LANGUAGE_SERVER_LANGUAGE_SERVER_H_
|