diff options
author | Jeremy Kolb <[email protected]> | 2020-02-25 13:38:50 +0000 |
---|---|---|
committer | kjeremy <[email protected]> | 2020-02-25 16:37:43 +0000 |
commit | 8f6f864547bad3d2bb34ea0cf5a32e8adee58c4e (patch) | |
tree | ad837a82e509a5aa8b4f69aa0288ba14d71b50cd /crates/rust-analyzer/src/main_loop.rs | |
parent | d3040c0deba8266044029a6479a1c12c28e72750 (diff) |
Semantic Ranges
Diffstat (limited to 'crates/rust-analyzer/src/main_loop.rs')
-rw-r--r-- | crates/rust-analyzer/src/main_loop.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/crates/rust-analyzer/src/main_loop.rs b/crates/rust-analyzer/src/main_loop.rs index 6e9e604a6..2b25f5443 100644 --- a/crates/rust-analyzer/src/main_loop.rs +++ b/crates/rust-analyzer/src/main_loop.rs | |||
@@ -527,8 +527,9 @@ fn on_request( | |||
527 | .on::<req::CallHierarchyPrepare>(handlers::handle_call_hierarchy_prepare)? | 527 | .on::<req::CallHierarchyPrepare>(handlers::handle_call_hierarchy_prepare)? |
528 | .on::<req::CallHierarchyIncomingCalls>(handlers::handle_call_hierarchy_incoming)? | 528 | .on::<req::CallHierarchyIncomingCalls>(handlers::handle_call_hierarchy_incoming)? |
529 | .on::<req::CallHierarchyOutgoingCalls>(handlers::handle_call_hierarchy_outgoing)? | 529 | .on::<req::CallHierarchyOutgoingCalls>(handlers::handle_call_hierarchy_outgoing)? |
530 | .on::<req::Ssr>(handlers::handle_ssr)? | ||
531 | .on::<req::SemanticTokensRequest>(handlers::handle_semantic_tokens)? | 530 | .on::<req::SemanticTokensRequest>(handlers::handle_semantic_tokens)? |
531 | .on::<req::SemanticTokensRangeRequest>(handlers::handle_semantic_tokens_range)? | ||
532 | .on::<req::Ssr>(handlers::handle_ssr)? | ||
532 | .finish(); | 533 | .finish(); |
533 | Ok(()) | 534 | Ok(()) |
534 | } | 535 | } |