mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-03 15:15:24 +00:00
Implement Find All References for local variables
This commit is contained in:
parent
2a704035f4
commit
3746689e9d
8 changed files with 96 additions and 3 deletions
|
@ -248,6 +248,7 @@ fn on_request(
|
|||
.on::<req::CodeActionRequest>(handlers::handle_code_action)?
|
||||
.on::<req::FoldingRangeRequest>(handlers::handle_folding_range)?
|
||||
.on::<req::SignatureHelpRequest>(handlers::handle_signature_help)?
|
||||
.on::<req::References>(handlers::handle_references)?
|
||||
.finish();
|
||||
match req {
|
||||
Ok((id, handle)) => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue