aboutsummaryrefslogtreecommitdiff
path: root/crates/ide/src/diagnostics.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ide/src/diagnostics.rs')
-rw-r--r--crates/ide/src/diagnostics.rs43
1 files changed, 0 insertions, 43 deletions
diff --git a/crates/ide/src/diagnostics.rs b/crates/ide/src/diagnostics.rs
index af282db0c..e3974e1ae 100644
--- a/crates/ide/src/diagnostics.rs
+++ b/crates/ide/src/diagnostics.rs
@@ -251,16 +251,6 @@ pub(crate) fn diagnostics(
251 res 251 res
252} 252}
253 253
254fn diagnostic_with_fix<D: DiagnosticWithFixes>(
255 d: &D,
256 sema: &Semantics<RootDatabase>,
257 resolve: &AssistResolveStrategy,
258) -> Diagnostic {
259 Diagnostic::error(sema.diagnostics_display_range(d.display_source()).range, d.message())
260 .with_fixes(d.fixes(sema, resolve))
261 .with_code(Some(d.code()))
262}
263
264fn warning_with_fix<D: DiagnosticWithFixes>( 254fn warning_with_fix<D: DiagnosticWithFixes>(
265 d: &D, 255 d: &D,
266 sema: &Semantics<RootDatabase>, 256 sema: &Semantics<RootDatabase>,
@@ -447,39 +437,6 @@ mod tests {
447 } 437 }
448 438
449 #[test] 439 #[test]
450 fn range_mapping_out_of_macros() {
451 // FIXME: this is very wrong, but somewhat tricky to fix.
452 check_fix(
453 r#"
454fn some() {}
455fn items() {}
456fn here() {}
457
458macro_rules! id { ($($tt:tt)*) => { $($tt)*}; }
459
460fn main() {
461 let _x = id![Foo { a: $042 }];
462}
463
464pub struct Foo { pub a: i32, pub b: i32 }
465"#,
466 r#"
467fn some(, b: () ) {}
468fn items() {}
469fn here() {}
470
471macro_rules! id { ($($tt:tt)*) => { $($tt)*}; }
472
473fn main() {
474 let _x = id![Foo { a: 42 }];
475}
476
477pub struct Foo { pub a: i32, pub b: i32 }
478"#,
479 );
480 }
481
482 #[test]
483 fn test_check_unnecessary_braces_in_use_statement() { 440 fn test_check_unnecessary_braces_in_use_statement() {
484 check_diagnostics( 441 check_diagnostics(
485 r#" 442 r#"