mirror of
https://github.com/denoland/deno.git
synced 2025-08-03 18:38:33 +00:00
refactor(lsp): migrate from lspower back to tower-lsp (#14163)
This commit is contained in:
parent
6c25b5135d
commit
a6e4b4297d
26 changed files with 253 additions and 228 deletions
|
@ -5,12 +5,12 @@
|
|||
// and https://github.com/microsoft/vscode/blob/main/src/vs/workbench/api/common/extHostTypes.ts
|
||||
// for the SemanticTokensBuilder implementation.
|
||||
|
||||
use lspower::lsp::SemanticToken;
|
||||
use lspower::lsp::SemanticTokenModifier;
|
||||
use lspower::lsp::SemanticTokenType;
|
||||
use lspower::lsp::SemanticTokens;
|
||||
use lspower::lsp::SemanticTokensLegend;
|
||||
use std::ops::{Index, IndexMut};
|
||||
use tower_lsp::lsp_types::SemanticToken;
|
||||
use tower_lsp::lsp_types::SemanticTokenModifier;
|
||||
use tower_lsp::lsp_types::SemanticTokenType;
|
||||
use tower_lsp::lsp_types::SemanticTokens;
|
||||
use tower_lsp::lsp_types::SemanticTokensLegend;
|
||||
|
||||
pub const MODIFIER_MASK: u32 = 255;
|
||||
pub const TYPE_OFFSET: u32 = 8;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue