aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2020-12-18 02:30:51 +0000
committerGitHub <[email protected]>2020-12-18 02:30:51 +0000
commitf4929fa9ccd0eda65c2b77fef163c31e33bfb89a (patch)
tree9c0a7983908c81e13dbc4526f910e89360bb1ce8
parent37e5f19373d6e4d639d0ee1125741f7b5c5c5b1a (diff)
parent60a3785ac27d7361617977bd53e11f2859e97c7c (diff)
Merge #6901
6901: Temp fixes panic caused by no ast for proc-macro r=maklad a=edwin0cheng There are some panic when hover/goto definition for proc-macro. It is because in current design, we don't have `ast-node` for proc-macro and then it trigger [this](https://github.com/rust-analyzer/rust-analyzer/blob/479d1f7eec22c3564867223e2093f14774092528/crates/hir/src/has_source.rs#L116) line to panic. This PR is a temp fix for all of these similar to https://github.com/rust-analyzer/rust-analyzer/blob/bd4c352831662762ee7a66da77ec9adf623b0a0a/crates/completion/src/render/macro_.rs#L42 Co-authored-by: Edwin Cheng <[email protected]>
-rw-r--r--crates/completion/src/render/macro_.rs1
-rw-r--r--crates/hir/src/code_model.rs6
-rw-r--r--crates/ide/src/display/navigation_target.rs10
-rw-r--r--crates/ide/src/hover.rs6
4 files changed, 22 insertions, 1 deletions
diff --git a/crates/completion/src/render/macro_.rs b/crates/completion/src/render/macro_.rs
index 6cfbd6c9b..dac79592f 100644
--- a/crates/completion/src/render/macro_.rs
+++ b/crates/completion/src/render/macro_.rs
@@ -41,6 +41,7 @@ impl<'a> MacroRender<'a> {
41 fn render(&self, import_to_add: Option<ImportEdit>) -> Option<CompletionItem> { 41 fn render(&self, import_to_add: Option<ImportEdit>) -> Option<CompletionItem> {
42 // FIXME: Currently proc-macro do not have ast-node, 42 // FIXME: Currently proc-macro do not have ast-node,
43 // such that it does not have source 43 // such that it does not have source
44 // more discussion: https://github.com/rust-analyzer/rust-analyzer/issues/6913
44 if self.macro_.is_proc_macro() { 45 if self.macro_.is_proc_macro() {
45 return None; 46 return None;
46 } 47 }
diff --git a/crates/hir/src/code_model.rs b/crates/hir/src/code_model.rs
index f17734e41..3248f6d20 100644
--- a/crates/hir/src/code_model.rs
+++ b/crates/hir/src/code_model.rs
@@ -983,6 +983,12 @@ impl MacroDef {
983 983
984 /// XXX: this parses the file 984 /// XXX: this parses the file
985 pub fn name(self, db: &dyn HirDatabase) -> Option<Name> { 985 pub fn name(self, db: &dyn HirDatabase) -> Option<Name> {
986 // FIXME: Currently proc-macro do not have ast-node,
987 // such that it does not have source
988 // more discussion: https://github.com/rust-analyzer/rust-analyzer/issues/6913
989 if self.is_proc_macro() {
990 return None;
991 }
986 self.source(db).value.name().map(|it| it.as_name()) 992 self.source(db).value.name().map(|it| it.as_name())
987 } 993 }
988 994
diff --git a/crates/ide/src/display/navigation_target.rs b/crates/ide/src/display/navigation_target.rs
index 522607cb7..48acb8c93 100644
--- a/crates/ide/src/display/navigation_target.rs
+++ b/crates/ide/src/display/navigation_target.rs
@@ -155,7 +155,15 @@ impl ToNav for FileSymbol {
155impl TryToNav for Definition { 155impl TryToNav for Definition {
156 fn try_to_nav(&self, db: &RootDatabase) -> Option<NavigationTarget> { 156 fn try_to_nav(&self, db: &RootDatabase) -> Option<NavigationTarget> {
157 match self { 157 match self {
158 Definition::Macro(it) => Some(it.to_nav(db)), 158 Definition::Macro(it) => {
159 // FIXME: Currently proc-macro do not have ast-node,
160 // such that it does not have source
161 // more discussion: https://github.com/rust-analyzer/rust-analyzer/issues/6913
162 if it.is_proc_macro() {
163 return None;
164 }
165 Some(it.to_nav(db))
166 }
159 Definition::Field(it) => Some(it.to_nav(db)), 167 Definition::Field(it) => Some(it.to_nav(db)),
160 Definition::ModuleDef(it) => it.try_to_nav(db), 168 Definition::ModuleDef(it) => it.try_to_nav(db),
161 Definition::SelfType(it) => Some(it.to_nav(db)), 169 Definition::SelfType(it) => Some(it.to_nav(db)),
diff --git a/crates/ide/src/hover.rs b/crates/ide/src/hover.rs
index e82aad6d5..da6bb726a 100644
--- a/crates/ide/src/hover.rs
+++ b/crates/ide/src/hover.rs
@@ -324,6 +324,12 @@ fn hover_for_definition(db: &RootDatabase, def: Definition) -> Option<Markup> {
324 let mod_path = definition_mod_path(db, &def); 324 let mod_path = definition_mod_path(db, &def);
325 return match def { 325 return match def {
326 Definition::Macro(it) => { 326 Definition::Macro(it) => {
327 // FIXME: Currently proc-macro do not have ast-node,
328 // such that it does not have source
329 // more discussion: https://github.com/rust-analyzer/rust-analyzer/issues/6913
330 if it.is_proc_macro() {
331 return None;
332 }
327 let label = macro_label(&it.source(db).value); 333 let label = macro_label(&it.source(db).value);
328 from_def_source_labeled(db, it, Some(label), mod_path) 334 from_def_source_labeled(db, it, Some(label), mod_path)
329 } 335 }