diff options
Diffstat (limited to 'crates/ide/src/display')
-rw-r--r-- | crates/ide/src/display/navigation_target.rs | 44 | ||||
-rw-r--r-- | crates/ide/src/display/short_label.rs | 128 |
2 files changed, 23 insertions, 149 deletions
diff --git a/crates/ide/src/display/navigation_target.rs b/crates/ide/src/display/navigation_target.rs index 198243466..c086de163 100644 --- a/crates/ide/src/display/navigation_target.rs +++ b/crates/ide/src/display/navigation_target.rs | |||
@@ -3,9 +3,12 @@ | |||
3 | use std::fmt; | 3 | use std::fmt; |
4 | 4 | ||
5 | use either::Either; | 5 | use either::Either; |
6 | use hir::{AssocItem, Documentation, FieldSource, HasAttrs, HasSource, InFile, ModuleSource}; | 6 | use hir::{ |
7 | AssocItem, Documentation, FieldSource, HasAttrs, HasSource, HirDisplay, InFile, ModuleSource, | ||
8 | Semantics, | ||
9 | }; | ||
7 | use ide_db::{ | 10 | use ide_db::{ |
8 | base_db::{FileId, FileRange, SourceDatabase}, | 11 | base_db::{FileId, FileRange}, |
9 | symbol_index::FileSymbolKind, | 12 | symbol_index::FileSymbolKind, |
10 | SymbolKind, | 13 | SymbolKind, |
11 | }; | 14 | }; |
@@ -17,8 +20,6 @@ use syntax::{ | |||
17 | 20 | ||
18 | use crate::FileSymbol; | 21 | use crate::FileSymbol; |
19 | 22 | ||
20 | use super::short_label::ShortLabel; | ||
21 | |||
22 | /// `NavigationTarget` represents and element in the editor's UI which you can | 23 | /// `NavigationTarget` represents and element in the editor's UI which you can |
23 | /// click on to navigate to a particular piece of code. | 24 | /// click on to navigate to a particular piece of code. |
24 | /// | 25 | /// |
@@ -98,7 +99,7 @@ impl NavigationTarget { | |||
98 | SymbolKind::Module, | 99 | SymbolKind::Module, |
99 | ); | 100 | ); |
100 | res.docs = module.attrs(db).docs(); | 101 | res.docs = module.attrs(db).docs(); |
101 | res.description = src.value.short_label(); | 102 | res.description = Some(module.display(db).to_string()); |
102 | return res; | 103 | return res; |
103 | } | 104 | } |
104 | module.to_nav(db) | 105 | module.to_nav(db) |
@@ -251,8 +252,8 @@ impl ToNavFromAst for hir::Trait { | |||
251 | 252 | ||
252 | impl<D> TryToNav for D | 253 | impl<D> TryToNav for D |
253 | where | 254 | where |
254 | D: HasSource + ToNavFromAst + Copy + HasAttrs, | 255 | D: HasSource + ToNavFromAst + Copy + HasAttrs + HirDisplay, |
255 | D::Ast: ast::NameOwner + ShortLabel, | 256 | D::Ast: ast::NameOwner, |
256 | { | 257 | { |
257 | fn try_to_nav(&self, db: &RootDatabase) -> Option<NavigationTarget> { | 258 | fn try_to_nav(&self, db: &RootDatabase) -> Option<NavigationTarget> { |
258 | let src = self.source(db)?; | 259 | let src = self.source(db)?; |
@@ -262,7 +263,7 @@ where | |||
262 | D::KIND, | 263 | D::KIND, |
263 | ); | 264 | ); |
264 | res.docs = self.docs(db); | 265 | res.docs = self.docs(db); |
265 | res.description = src.value.short_label(); | 266 | res.description = Some(self.display(db).to_string()); |
266 | Some(res) | 267 | Some(res) |
267 | } | 268 | } |
268 | } | 269 | } |
@@ -317,7 +318,7 @@ impl TryToNav for hir::Field { | |||
317 | let mut res = | 318 | let mut res = |
318 | NavigationTarget::from_named(db, src.with_value(it), SymbolKind::Field); | 319 | NavigationTarget::from_named(db, src.with_value(it), SymbolKind::Field); |
319 | res.docs = self.docs(db); | 320 | res.docs = self.docs(db); |
320 | res.description = it.short_label(); | 321 | res.description = Some(self.display(db).to_string()); |
321 | res | 322 | res |
322 | } | 323 | } |
323 | FieldSource::Pos(it) => { | 324 | FieldSource::Pos(it) => { |
@@ -500,21 +501,22 @@ impl TryToNav for hir::ConstParam { | |||
500 | /// | 501 | /// |
501 | /// e.g. `struct Name`, `enum Name`, `fn Name` | 502 | /// e.g. `struct Name`, `enum Name`, `fn Name` |
502 | pub(crate) fn description_from_symbol(db: &RootDatabase, symbol: &FileSymbol) -> Option<String> { | 503 | pub(crate) fn description_from_symbol(db: &RootDatabase, symbol: &FileSymbol) -> Option<String> { |
503 | let parse = db.parse(symbol.file_id); | 504 | let sema = Semantics::new(db); |
504 | let node = symbol.ptr.to_node(parse.tree().syntax()); | 505 | let parse = sema.parse(symbol.file_id); |
506 | let node = symbol.ptr.to_node(parse.syntax()); | ||
505 | 507 | ||
506 | match_ast! { | 508 | match_ast! { |
507 | match node { | 509 | match node { |
508 | ast::Fn(it) => it.short_label(), | 510 | ast::Fn(it) => sema.to_def(&it).map(|it| it.display(db).to_string()), |
509 | ast::Struct(it) => it.short_label(), | 511 | ast::Struct(it) => sema.to_def(&it).map(|it| it.display(db).to_string()), |
510 | ast::Enum(it) => it.short_label(), | 512 | ast::Enum(it) => sema.to_def(&it).map(|it| it.display(db).to_string()), |
511 | ast::Trait(it) => it.short_label(), | 513 | ast::Trait(it) => sema.to_def(&it).map(|it| it.display(db).to_string()), |
512 | ast::Module(it) => it.short_label(), | 514 | ast::Module(it) => sema.to_def(&it).map(|it| it.display(db).to_string()), |
513 | ast::TypeAlias(it) => it.short_label(), | 515 | ast::TypeAlias(it) => sema.to_def(&it).map(|it| it.display(db).to_string()), |
514 | ast::Const(it) => it.short_label(), | 516 | ast::Const(it) => sema.to_def(&it).map(|it| it.display(db).to_string()), |
515 | ast::Static(it) => it.short_label(), | 517 | ast::Static(it) => sema.to_def(&it).map(|it| it.display(db).to_string()), |
516 | ast::RecordField(it) => it.short_label(), | 518 | ast::RecordField(it) => sema.to_def(&it).map(|it| it.display(db).to_string()), |
517 | ast::Variant(it) => it.short_label(), | 519 | ast::Variant(it) => sema.to_def(&it).map(|it| it.display(db).to_string()), |
518 | _ => None, | 520 | _ => None, |
519 | } | 521 | } |
520 | } | 522 | } |
diff --git a/crates/ide/src/display/short_label.rs b/crates/ide/src/display/short_label.rs deleted file mode 100644 index 2df9266b4..000000000 --- a/crates/ide/src/display/short_label.rs +++ /dev/null | |||
@@ -1,128 +0,0 @@ | |||
1 | //! FIXME: write short doc here | ||
2 | |||
3 | use stdx::format_to; | ||
4 | use syntax::ast::{self, AstNode, NameOwner, VisibilityOwner}; | ||
5 | |||
6 | pub(crate) trait ShortLabel { | ||
7 | fn short_label(&self) -> Option<String>; | ||
8 | } | ||
9 | |||
10 | impl ShortLabel for ast::Fn { | ||
11 | fn short_label(&self) -> Option<String> { | ||
12 | Some(crate::display::function_declaration(self)) | ||
13 | } | ||
14 | } | ||
15 | |||
16 | impl ShortLabel for ast::Struct { | ||
17 | fn short_label(&self) -> Option<String> { | ||
18 | short_label_from_node(self, "struct ") | ||
19 | } | ||
20 | } | ||
21 | |||
22 | impl ShortLabel for ast::Union { | ||
23 | fn short_label(&self) -> Option<String> { | ||
24 | short_label_from_node(self, "union ") | ||
25 | } | ||
26 | } | ||
27 | |||
28 | impl ShortLabel for ast::Enum { | ||
29 | fn short_label(&self) -> Option<String> { | ||
30 | short_label_from_node(self, "enum ") | ||
31 | } | ||
32 | } | ||
33 | |||
34 | impl ShortLabel for ast::Trait { | ||
35 | fn short_label(&self) -> Option<String> { | ||
36 | if self.unsafe_token().is_some() { | ||
37 | short_label_from_node(self, "unsafe trait ") | ||
38 | } else { | ||
39 | short_label_from_node(self, "trait ") | ||
40 | } | ||
41 | } | ||
42 | } | ||
43 | |||
44 | impl ShortLabel for ast::Module { | ||
45 | fn short_label(&self) -> Option<String> { | ||
46 | short_label_from_node(self, "mod ") | ||
47 | } | ||
48 | } | ||
49 | |||
50 | impl ShortLabel for ast::SourceFile { | ||
51 | fn short_label(&self) -> Option<String> { | ||
52 | None | ||
53 | } | ||
54 | } | ||
55 | |||
56 | impl ShortLabel for ast::BlockExpr { | ||
57 | fn short_label(&self) -> Option<String> { | ||
58 | None | ||
59 | } | ||
60 | } | ||
61 | |||
62 | impl ShortLabel for ast::TypeAlias { | ||
63 | fn short_label(&self) -> Option<String> { | ||
64 | let mut buf = short_label_from_node(self, "type ")?; | ||
65 | if let Some(type_ref) = self.ty() { | ||
66 | format_to!(buf, " = {}", type_ref.syntax()); | ||
67 | } | ||
68 | Some(buf) | ||
69 | } | ||
70 | } | ||
71 | |||
72 | impl ShortLabel for ast::Const { | ||
73 | fn short_label(&self) -> Option<String> { | ||
74 | short_label_from_ty(self, self.ty(), "const ") | ||
75 | } | ||
76 | } | ||
77 | |||
78 | impl ShortLabel for ast::Static { | ||
79 | fn short_label(&self) -> Option<String> { | ||
80 | short_label_from_ty(self, self.ty(), "static ") | ||
81 | } | ||
82 | } | ||
83 | |||
84 | impl ShortLabel for ast::RecordField { | ||
85 | fn short_label(&self) -> Option<String> { | ||
86 | short_label_from_ty(self, self.ty(), "") | ||
87 | } | ||
88 | } | ||
89 | |||
90 | impl ShortLabel for ast::Variant { | ||
91 | fn short_label(&self) -> Option<String> { | ||
92 | Some(self.name()?.text().to_string()) | ||
93 | } | ||
94 | } | ||
95 | |||
96 | impl ShortLabel for ast::ConstParam { | ||
97 | fn short_label(&self) -> Option<String> { | ||
98 | let mut buf = "const ".to_owned(); | ||
99 | buf.push_str(self.name()?.text()); | ||
100 | if let Some(type_ref) = self.ty() { | ||
101 | format_to!(buf, ": {}", type_ref.syntax()); | ||
102 | } | ||
103 | Some(buf) | ||
104 | } | ||
105 | } | ||
106 | |||
107 | fn short_label_from_ty<T>(node: &T, ty: Option<ast::Type>, prefix: &str) -> Option<String> | ||
108 | where | ||
109 | T: NameOwner + VisibilityOwner, | ||
110 | { | ||
111 | let mut buf = short_label_from_node(node, prefix)?; | ||
112 | |||
113 | if let Some(type_ref) = ty { | ||
114 | format_to!(buf, ": {}", type_ref.syntax()); | ||
115 | } | ||
116 | |||
117 | Some(buf) | ||
118 | } | ||
119 | |||
120 | fn short_label_from_node<T>(node: &T, label: &str) -> Option<String> | ||
121 | where | ||
122 | T: NameOwner + VisibilityOwner, | ||
123 | { | ||
124 | let mut buf = node.visibility().map(|v| format!("{} ", v.syntax())).unwrap_or_default(); | ||
125 | buf.push_str(label); | ||
126 | buf.push_str(node.name()?.text()); | ||
127 | Some(buf) | ||
128 | } | ||