diff options
author | Aleksey Kladov <[email protected]> | 2020-04-17 12:06:02 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-04-17 12:56:38 +0100 |
commit | a8196ffe8466aa60dec56e77c2da717793c0debe (patch) | |
tree | 03869b8175d5325de1baa95e0a385d2823b5946e /crates/ra_hir_def | |
parent | 302bf97bbf1855e3c7def9ab4f9f3d338be5e3b7 (diff) |
Correctly highlight ranges of diagnostics from macros
closes #2799
Diffstat (limited to 'crates/ra_hir_def')
-rw-r--r-- | crates/ra_hir_def/src/diagnostics.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/crates/ra_hir_def/src/diagnostics.rs b/crates/ra_hir_def/src/diagnostics.rs index dbaf4deef..2ee28fbaa 100644 --- a/crates/ra_hir_def/src/diagnostics.rs +++ b/crates/ra_hir_def/src/diagnostics.rs | |||
@@ -20,11 +20,11 @@ impl Diagnostic for UnresolvedModule { | |||
20 | fn message(&self) -> String { | 20 | fn message(&self) -> String { |
21 | "unresolved module".to_string() | 21 | "unresolved module".to_string() |
22 | } | 22 | } |
23 | fn highlight_range(&self) -> TextRange { | 23 | fn highlight_range(&self) -> InFile<TextRange> { |
24 | self.highlight_range | 24 | InFile::new(self.file, self.highlight_range) |
25 | } | 25 | } |
26 | fn source(&self) -> InFile<SyntaxNodePtr> { | 26 | fn source(&self) -> InFile<SyntaxNodePtr> { |
27 | InFile { file_id: self.file, value: self.decl.clone().into() } | 27 | InFile::new(self.file, self.decl.clone().into()) |
28 | } | 28 | } |
29 | fn as_any(&self) -> &(dyn Any + Send + 'static) { | 29 | fn as_any(&self) -> &(dyn Any + Send + 'static) { |
30 | self | 30 | self |