2022-01-07 22:09:52 -05:00
|
|
|
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
2021-05-11 00:54:10 -04:00
|
|
|
|
2021-12-04 08:19:06 -05:00
|
|
|
// FIXME(bartlomieju): remove this attribute
|
|
|
|
#![allow(unused)]
|
|
|
|
|
2020-12-21 08:44:26 -05:00
|
|
|
use deno_core::error::AnyError;
|
|
|
|
use lspower::LspService;
|
|
|
|
use lspower::Server;
|
2020-12-07 05:46:39 -05:00
|
|
|
|
2021-12-15 13:23:43 -05:00
|
|
|
pub use repl::ReplCompletionItem;
|
|
|
|
pub use repl::ReplLanguageServer;
|
|
|
|
|
2020-12-07 05:46:39 -05:00
|
|
|
mod analysis;
|
2021-10-10 17:26:22 -04:00
|
|
|
mod cache;
|
2020-12-07 05:46:39 -05:00
|
|
|
mod capabilities;
|
2021-12-15 13:23:43 -05:00
|
|
|
mod client;
|
2021-06-04 17:31:44 -04:00
|
|
|
mod code_lens;
|
2021-03-24 20:13:37 -04:00
|
|
|
mod completions;
|
2020-12-07 05:46:39 -05:00
|
|
|
mod config;
|
|
|
|
mod diagnostics;
|
2021-01-22 05:03:16 -05:00
|
|
|
mod documents;
|
2021-04-08 21:27:27 -04:00
|
|
|
pub(crate) mod language_server;
|
2021-12-15 13:23:43 -05:00
|
|
|
mod logging;
|
2021-06-01 07:53:08 -04:00
|
|
|
mod lsp_custom;
|
2021-06-17 19:57:58 -04:00
|
|
|
mod parent_process_checker;
|
2021-04-08 21:27:27 -04:00
|
|
|
mod path_to_regex;
|
2021-01-26 19:32:49 -05:00
|
|
|
mod performance;
|
2021-08-05 21:46:32 -04:00
|
|
|
mod refactor;
|
2021-04-08 21:27:27 -04:00
|
|
|
mod registries;
|
2021-12-15 13:23:43 -05:00
|
|
|
mod repl;
|
2021-04-19 21:26:36 -04:00
|
|
|
mod semantic_tokens;
|
2020-12-07 05:46:39 -05:00
|
|
|
mod text;
|
|
|
|
mod tsc;
|
2021-02-17 23:37:05 -05:00
|
|
|
mod urls;
|
2020-12-07 05:46:39 -05:00
|
|
|
|
2021-06-22 21:48:01 -04:00
|
|
|
pub async fn start() -> Result<(), AnyError> {
|
2020-12-21 08:44:26 -05:00
|
|
|
let stdin = tokio::io::stdin();
|
|
|
|
let stdout = tokio::io::stdout();
|
2020-12-07 05:46:39 -05:00
|
|
|
|
2021-12-15 13:23:43 -05:00
|
|
|
let (service, messages) = LspService::new(|client| {
|
|
|
|
language_server::LanguageServer::new(client::Client::from_lspower(client))
|
|
|
|
});
|
2020-12-21 08:44:26 -05:00
|
|
|
Server::new(stdin, stdout)
|
|
|
|
.interleave(messages)
|
|
|
|
.serve(service)
|
|
|
|
.await;
|
2020-12-07 05:46:39 -05:00
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|