mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
1fb5858009
Co-authored-by: Erfan Safari <erfanshield@outlook.com>
49 lines
992 B
Rust
49 lines
992 B
Rust
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
|
|
|
// FIXME(bartlomieju): remove this attribute
|
|
#![allow(unused)]
|
|
|
|
use deno_core::error::AnyError;
|
|
use lspower::LspService;
|
|
use lspower::Server;
|
|
|
|
pub use repl::ReplCompletionItem;
|
|
pub use repl::ReplLanguageServer;
|
|
|
|
mod analysis;
|
|
mod cache;
|
|
mod capabilities;
|
|
mod client;
|
|
mod code_lens;
|
|
mod completions;
|
|
mod config;
|
|
mod diagnostics;
|
|
mod documents;
|
|
pub(crate) mod language_server;
|
|
mod logging;
|
|
mod lsp_custom;
|
|
mod parent_process_checker;
|
|
mod path_to_regex;
|
|
mod performance;
|
|
mod refactor;
|
|
mod registries;
|
|
mod repl;
|
|
mod semantic_tokens;
|
|
mod text;
|
|
mod tsc;
|
|
mod urls;
|
|
|
|
pub async fn start() -> Result<(), AnyError> {
|
|
let stdin = tokio::io::stdin();
|
|
let stdout = tokio::io::stdout();
|
|
|
|
let (service, messages) = LspService::new(|client| {
|
|
language_server::LanguageServer::new(client::Client::from_lspower(client))
|
|
});
|
|
Server::new(stdin, stdout)
|
|
.interleave(messages)
|
|
.serve(service)
|
|
.await;
|
|
|
|
Ok(())
|
|
}
|