diff options
author | unexge <[email protected]> | 2020-08-16 14:42:44 +0100 |
---|---|---|
committer | unexge <[email protected]> | 2020-08-20 19:34:53 +0100 |
commit | 585f5d4901f3ddc0bec6aface8a86707d216886e (patch) | |
tree | af42fe9ab04207a8089ee8505bb662a7fbc927c2 /crates | |
parent | 0847bc801eab10ec32792fdc546007a8a1cfbdde (diff) |
Use fixme instead of todo
Diffstat (limited to 'crates')
-rw-r--r-- | crates/assists/src/handlers/expand_glob_import.rs | 2 | ||||
-rw-r--r-- | crates/ide_db/src/defs.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/crates/assists/src/handlers/expand_glob_import.rs b/crates/assists/src/handlers/expand_glob_import.rs index 64267a03f..0e80cde77 100644 --- a/crates/assists/src/handlers/expand_glob_import.rs +++ b/crates/assists/src/handlers/expand_glob_import.rs | |||
@@ -709,7 +709,7 @@ fn qux(bar: Bar, baz: Baz) { | |||
709 | 709 | ||
710 | #[test] | 710 | #[test] |
711 | fn expanding_glob_import_with_macro_defs() { | 711 | fn expanding_glob_import_with_macro_defs() { |
712 | // TODO: this is currently fails because `Definition::find_usages` ignores macros | 712 | // FIXME: this is currently fails because `Definition::find_usages` ignores macros |
713 | // https://github.com/rust-analyzer/rust-analyzer/issues/3484 | 713 | // https://github.com/rust-analyzer/rust-analyzer/issues/3484 |
714 | // | 714 | // |
715 | // check_assist( | 715 | // check_assist( |
diff --git a/crates/ide_db/src/defs.rs b/crates/ide_db/src/defs.rs index 1e7a1f159..0d0affc27 100644 --- a/crates/ide_db/src/defs.rs +++ b/crates/ide_db/src/defs.rs | |||
@@ -225,7 +225,7 @@ pub fn classify_name(sema: &Semantics<RootDatabase>, name: &ast::Name) -> Option | |||
225 | } | 225 | } |
226 | } | 226 | } |
227 | 227 | ||
228 | #[derive(Debug, Clone, PartialEq, Eq)] | 228 | #[derive(Debug)] |
229 | pub enum NameRefClass { | 229 | pub enum NameRefClass { |
230 | ExternCrate(Crate), | 230 | ExternCrate(Crate), |
231 | Definition(Definition), | 231 | Definition(Definition), |