Skip to content

Commit ecc1ff8

Browse files
committed
Render layout and other extra informations on hovering Self
1 parent 32fa60f commit ecc1ff8

File tree

3 files changed

+73
-7
lines changed

3 files changed

+73
-7
lines changed

crates/ide/src/hover.rs

+11-5
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,11 @@ use ide_db::{
1818
};
1919
use itertools::{Itertools, multizip};
2020
use span::Edition;
21-
use syntax::{AstNode, SyntaxKind::*, SyntaxNode, T, ast};
21+
use syntax::{
22+
AstNode,
23+
SyntaxKind::{self, *},
24+
SyntaxNode, T, ast,
25+
};
2226

2327
use crate::{
2428
FileId, FilePosition, NavigationTarget, RangeInfo, Runnable, TryToNav,
@@ -274,11 +278,13 @@ fn hover_offset(
274278
}
275279

276280
class => {
277-
let is_def = matches!(class, IdentClass::NameClass(_));
281+
let render_extras = matches!(class, IdentClass::NameClass(_))
282+
// Render extra information for `Self` keyword as well
283+
|| ast::NameRef::cast(node.clone()).is_some_and(|name_ref| name_ref.token_kind() == SyntaxKind::SELF_TYPE_KW);
278284
multizip((
279285
class.definitions(),
280286
iter::repeat(None),
281-
iter::repeat(is_def),
287+
iter::repeat(render_extras),
282288
iter::repeat(node),
283289
))
284290
.collect::<Vec<_>>()
@@ -422,7 +428,7 @@ pub(crate) fn hover_for_definition(
422428
subst: Option<GenericSubstitution>,
423429
scope_node: &SyntaxNode,
424430
macro_arm: Option<u32>,
425-
hovered_definition: bool,
431+
render_extras: bool,
426432
config: &HoverConfig,
427433
edition: Edition,
428434
display_target: DisplayTarget,
@@ -456,7 +462,7 @@ pub(crate) fn hover_for_definition(
456462
famous_defs.as_ref(),
457463
&notable_traits,
458464
macro_arm,
459-
hovered_definition,
465+
render_extras,
460466
subst_types.as_ref(),
461467
config,
462468
edition,

crates/ide/src/hover/render.rs

+8-2
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@ pub(super) fn definition(
477477
famous_defs: Option<&FamousDefs<'_, '_>>,
478478
notable_traits: &[(Trait, Vec<(Option<Type>, Name)>)],
479479
macro_arm: Option<u32>,
480-
hovered_definition: bool,
480+
render_extras: bool,
481481
subst_types: Option<&Vec<(Symbol, Type)>>,
482482
config: &HoverConfig,
483483
edition: Edition,
@@ -640,6 +640,12 @@ pub(super) fn definition(
640640
Definition::Local(it) => {
641641
render_memory_layout(config.memory_layout, || it.ty(db).layout(db), |_| None, |_| None)
642642
}
643+
Definition::SelfType(it) => render_memory_layout(
644+
config.memory_layout,
645+
|| it.self_ty(db).layout(db),
646+
|_| None,
647+
|_| None,
648+
),
643649
_ => None,
644650
};
645651

@@ -741,7 +747,7 @@ pub(super) fn definition(
741747
};
742748

743749
let mut extra = String::new();
744-
if hovered_definition {
750+
if render_extras {
745751
if let Some(notable_traits) =
746752
render_notable_trait(db, notable_traits, edition, display_target)
747753
{

crates/ide/src/hover/tests.rs

+54
Original file line numberDiff line numberDiff line change
@@ -2089,6 +2089,10 @@ impl Thing {
20892089
x: u32,
20902090
}
20912091
```
2092+
2093+
---
2094+
2095+
size = 4, align = 4
20922096
"#]],
20932097
);
20942098
check_hover_fields_limit(
@@ -2109,6 +2113,10 @@ impl Thing {
21092113
```rust
21102114
struct Thing
21112115
```
2116+
2117+
---
2118+
2119+
size = 4, align = 4
21122120
"#]],
21132121
);
21142122
check(
@@ -2130,6 +2138,10 @@ impl Thing {
21302138
x: u32,
21312139
}
21322140
```
2141+
2142+
---
2143+
2144+
size = 4, align = 4
21332145
"#]],
21342146
);
21352147
check(
@@ -2151,6 +2163,10 @@ impl Thing {
21512163
A,
21522164
}
21532165
```
2166+
2167+
---
2168+
2169+
size = 0, align = 1
21542170
"#]],
21552171
);
21562172
check(
@@ -2172,6 +2188,10 @@ impl Thing {
21722188
A,
21732189
}
21742190
```
2191+
2192+
---
2193+
2194+
size = 0, align = 1
21752195
"#]],
21762196
);
21772197
check(
@@ -2190,6 +2210,10 @@ impl usize {
21902210
```rust
21912211
usize
21922212
```
2213+
2214+
---
2215+
2216+
size = 8, align = 8
21932217
"#]],
21942218
);
21952219
check(
@@ -2208,6 +2232,36 @@ impl fn() -> usize {
22082232
```rust
22092233
fn() -> usize
22102234
```
2235+
2236+
---
2237+
2238+
size = 8, align = 8, niches = 1
2239+
"#]],
2240+
);
2241+
check(
2242+
r#"
2243+
pub struct Foo
2244+
where
2245+
Self$0:;
2246+
"#,
2247+
expect![[r#"
2248+
*Self*
2249+
2250+
```rust
2251+
ra_test_fixture
2252+
```
2253+
2254+
```rust
2255+
pub struct Foo
2256+
```
2257+
2258+
---
2259+
2260+
size = 0, align = 1
2261+
2262+
---
2263+
2264+
does not contain types with destructors (drop glue); doesn't have a destructor
22112265
"#]],
22122266
);
22132267
}

0 commit comments

Comments
 (0)