diff options
Diffstat (limited to 'crates/ide/src/hover.rs')
-rw-r--r-- | crates/ide/src/hover.rs | 32 |
1 files changed, 31 insertions, 1 deletions
diff --git a/crates/ide/src/hover.rs b/crates/ide/src/hover.rs index ba67dd9f8..53265488e 100644 --- a/crates/ide/src/hover.rs +++ b/crates/ide/src/hover.rs | |||
@@ -300,7 +300,7 @@ fn definition_owner_name(db: &RootDatabase, def: &Definition) -> Option<String> | |||
300 | 300 | ||
301 | fn render_path(db: &RootDatabase, module: Module, item_name: Option<String>) -> String { | 301 | fn render_path(db: &RootDatabase, module: Module, item_name: Option<String>) -> String { |
302 | let crate_name = | 302 | let crate_name = |
303 | db.crate_graph()[module.krate().into()].display_name.as_ref().map(ToString::to_string); | 303 | db.crate_graph()[module.krate().into()].declaration_name.as_ref().map(ToString::to_string); |
304 | let module_path = module | 304 | let module_path = module |
305 | .path_to_root(db) | 305 | .path_to_root(db) |
306 | .into_iter() | 306 | .into_iter() |
@@ -3202,4 +3202,34 @@ fn main() { let s<|>t = test().get(); } | |||
3202 | "#]], | 3202 | "#]], |
3203 | ); | 3203 | ); |
3204 | } | 3204 | } |
3205 | |||
3206 | #[test] | ||
3207 | fn hover_displays_normalized_crate_names() { | ||
3208 | check( | ||
3209 | r#" | ||
3210 | //- /lib.rs crate:name-with-dashes | ||
3211 | pub mod wrapper { | ||
3212 | pub struct Thing { x: u32 } | ||
3213 | |||
3214 | impl Thing { | ||
3215 | pub fn new() -> Thing { Thing { x: 0 } } | ||
3216 | } | ||
3217 | } | ||
3218 | |||
3219 | //- /main.rs crate:main deps:name-with-dashes | ||
3220 | fn main() { let foo_test = name_with_dashes::wrapper::Thing::new<|>(); } | ||
3221 | "#, | ||
3222 | expect![[r#" | ||
3223 | *new* | ||
3224 | |||
3225 | ```rust | ||
3226 | name_with_dashes::wrapper::Thing | ||
3227 | ``` | ||
3228 | |||
3229 | ```rust | ||
3230 | pub fn new() -> Thing | ||
3231 | ``` | ||
3232 | "#]], | ||
3233 | ) | ||
3234 | } | ||
3205 | } | 3235 | } |