diff options
author | Jason <m.jason.liu@outlook.com> | 2022-04-03 12:17:30 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-03 14:17:30 +1000 |
commit | a6e4b4297d840e9cfe4bdf373f24da8202f58e2d (patch) | |
tree | 9de6209eaa5affc810bc5bd9d7cc65384d55a9f3 /cli/lsp/analysis.rs | |
parent | 6c25b5135dfa6d9be35f6993e4b43d442977eff9 (diff) |
refactor(lsp): migrate from lspower back to tower-lsp (#14163)
Diffstat (limited to 'cli/lsp/analysis.rs')
-rw-r--r-- | cli/lsp/analysis.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/lsp/analysis.rs b/cli/lsp/analysis.rs index f789cf2fc..2c7079951 100644 --- a/cli/lsp/analysis.rs +++ b/cli/lsp/analysis.rs @@ -16,13 +16,13 @@ use deno_core::error::AnyError; use deno_core::serde::Deserialize; use deno_core::serde_json::json; use deno_core::ModuleSpecifier; -use lspower::lsp; -use lspower::lsp::Position; -use lspower::lsp::Range; use once_cell::sync::Lazy; use regex::Regex; use std::cmp::Ordering; use std::collections::HashMap; +use tower_lsp::lsp_types as lsp; +use tower_lsp::lsp_types::Position; +use tower_lsp::lsp_types::Range; /// Diagnostic error codes which actually are the same, and so when grouping /// fixes we treat them the same. |