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