Skip to content

Commit e4ffd70

Browse files
committed
Fix OptionalVersionedTextDocumentIdentifier type
Fixes #6654
1 parent a18392b commit e4ffd70

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/rust-analyzer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ env_logger = { version = "0.8.1", default-features = false }
2121
itertools = "0.9.0"
2222
jod-thread = "0.1.0"
2323
log = "0.4.8"
24-
lsp-types = { version = "0.84.0", features = ["proposed"] }
24+
lsp-types = { version = "0.85.0", features = ["proposed"] }
2525
parking_lot = "0.11.0"
2626
pico-args = "0.3.1"
2727
oorandom = "11.1.2"

crates/rust-analyzer/src/semantic_tokens.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ macro_rules! define_semantic_token_types {
2727
SemanticTokenType::ENUM_MEMBER,
2828
SemanticTokenType::TYPE_PARAMETER,
2929
SemanticTokenType::FUNCTION,
30-
SemanticTokenType::MEMBER,
30+
SemanticTokenType::METHOD,
3131
SemanticTokenType::PROPERTY,
3232
SemanticTokenType::MACRO,
3333
SemanticTokenType::VARIABLE,

0 commit comments

Comments
 (0)