aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_ide/src/hover.rs
diff options
context:
space:
mode:
authorJmPotato <[email protected]>2020-08-10 07:02:40 +0100
committerJmPotato <[email protected]>2020-08-10 07:02:40 +0100
commit4d9c8821e5c328f29b77667c86cabb3689947fd2 (patch)
tree7f56674f5a4a4deabcbf7a6f76b4814cf345a3a6 /crates/ra_ide/src/hover.rs
parent7a03f05eac4ff1e9ca4ceeced54ce06892bd30b8 (diff)
Show const body in short_label
Signed-off-by: JmPotato <[email protected]>
Diffstat (limited to 'crates/ra_ide/src/hover.rs')
-rw-r--r--crates/ra_ide/src/hover.rs8
1 files changed, 4 insertions, 4 deletions
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 )