File tree 1 file changed +7
-3
lines changed
src/tools/rust-analyzer/crates/rust-analyzer/src/handlers
1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -511,12 +511,16 @@ pub(crate) fn handle_document_diagnostics(
511
511
. into_iter ( )
512
512
. filter_map ( |d| {
513
513
let file = d. range . file_id ;
514
- let diagnostic = convert_diagnostic ( & line_index, d) ;
515
514
if file == file_id {
515
+ let diagnostic = convert_diagnostic ( & line_index, d) ;
516
516
return Some ( diagnostic) ;
517
517
}
518
518
if supports_related {
519
- related_documents. entry ( file) . or_insert_with ( Vec :: new) . push ( diagnostic) ;
519
+ let ( diagnostics, line_index) = related_documents
520
+ . entry ( file)
521
+ . or_insert_with ( || ( Vec :: new ( ) , snap. file_line_index ( file) . ok ( ) ) ) ;
522
+ let diagnostic = convert_diagnostic ( line_index. as_mut ( ) ?, d) ;
523
+ diagnostics. push ( diagnostic) ;
520
524
}
521
525
None
522
526
} ) ;
@@ -529,7 +533,7 @@ pub(crate) fn handle_document_diagnostics(
529
533
related_documents : related_documents. is_empty ( ) . not ( ) . then ( || {
530
534
related_documents
531
535
. into_iter ( )
532
- . map ( |( id, items) | {
536
+ . map ( |( id, ( items, _ ) ) | {
533
537
(
534
538
to_proto:: url ( & snap, id) ,
535
539
lsp_types:: DocumentDiagnosticReportKind :: Full (
You can’t perform that action at this time.
0 commit comments