diff options
-rw-r--r-- | crates/ra_ide/src/display/short_label.rs | 6 | ||||
-rw-r--r-- | crates/ra_ide/src/hover.rs | 8 |
2 files changed, 9 insertions, 5 deletions
diff --git a/crates/ra_ide/src/display/short_label.rs b/crates/ra_ide/src/display/short_label.rs index b5ff9fa2d..010c34705 100644 --- a/crates/ra_ide/src/display/short_label.rs +++ b/crates/ra_ide/src/display/short_label.rs | |||
@@ -61,7 +61,11 @@ impl ShortLabel for ast::TypeAlias { | |||
61 | 61 | ||
62 | impl ShortLabel for ast::Const { | 62 | impl ShortLabel for ast::Const { |
63 | fn short_label(&self) -> Option<String> { | 63 | fn short_label(&self) -> Option<String> { |
64 | short_label_from_ty(self, self.ty(), "const ") | 64 | let mut new_buf = short_label_from_ty(self, self.ty(), "const ")?; |
65 | if let Some(expr) = self.body() { | ||
66 | format_to!(new_buf, " = {}", expr.syntax()); | ||
67 | } | ||
68 | Some(new_buf) | ||
65 | } | 69 | } |
66 | } | 70 | } |
67 | 71 | ||
diff --git a/crates/ra_ide/src/hover.rs b/crates/ra_ide/src/hover.rs index 9c7348898..f66f62bfb 100644 --- a/crates/ra_ide/src/hover.rs +++ b/crates/ra_ide/src/hover.rs | |||
@@ -590,16 +590,16 @@ fn main() { | |||
590 | #[test] | 590 | #[test] |
591 | fn hover_const_static() { | 591 | fn hover_const_static() { |
592 | check( | 592 | check( |
593 | r#"const foo<|>: u32 = 0;"#, | 593 | r#"const foo<|>: u32 = 123;"#, |
594 | expect![[r#" | 594 | expect![[r#" |
595 | *foo* | 595 | *foo* |
596 | ```rust | 596 | ```rust |
597 | const foo: u32 | 597 | const foo: u32 = 123 |
598 | ``` | 598 | ``` |
599 | "#]], | 599 | "#]], |
600 | ); | 600 | ); |
601 | check( | 601 | check( |
602 | r#"static foo<|>: u32 = 0;"#, | 602 | r#"static foo<|>: u32 = 456;"#, |
603 | expect![[r#" | 603 | expect![[r#" |
604 | *foo* | 604 | *foo* |
605 | ```rust | 605 | ```rust |
@@ -834,7 +834,7 @@ fn main() { | |||
834 | expect![[r#" | 834 | expect![[r#" |
835 | *C* | 835 | *C* |
836 | ```rust | 836 | ```rust |
837 | const C: u32 | 837 | const C: u32 = 1 |
838 | ``` | 838 | ``` |
839 | "#]], | 839 | "#]], |
840 | ) | 840 | ) |