diff options
Diffstat (limited to 'cli/lsp/semantic_tokens.rs')
-rw-r--r-- | cli/lsp/semantic_tokens.rs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cli/lsp/semantic_tokens.rs b/cli/lsp/semantic_tokens.rs index 4937600d3..d15b55cec 100644 --- a/cli/lsp/semantic_tokens.rs +++ b/cli/lsp/semantic_tokens.rs @@ -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; |