diff options
author | Benjamin Coenen <[email protected]> | 2020-04-21 13:32:02 +0100 |
---|---|---|
committer | Benjamin Coenen <[email protected]> | 2020-04-21 13:32:02 +0100 |
commit | 7f143b154e7c47b1f5bdc558bb0b5d1f2bf74f8d (patch) | |
tree | 571b7d5bdfc84bdaeaa8235221fd96a87453fe05 /crates/ra_ide/src/completion | |
parent | 1c3a1385a587f0713908c0ae888ffad31f13de11 (diff) | |
parent | a88887df0726cc3d390db4bfbbc1274195d87f91 (diff) |
Merge branch 'master' of github.com:rust-analyzer/rust-analyzer
Diffstat (limited to 'crates/ra_ide/src/completion')
-rw-r--r-- | crates/ra_ide/src/completion/presentation.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/crates/ra_ide/src/completion/presentation.rs b/crates/ra_ide/src/completion/presentation.rs index bb12a1bdc..f8dac1d54 100644 --- a/crates/ra_ide/src/completion/presentation.rs +++ b/crates/ra_ide/src/completion/presentation.rs | |||
@@ -161,6 +161,12 @@ impl Completions { | |||
161 | name: Option<String>, | 161 | name: Option<String>, |
162 | macro_: hir::MacroDef, | 162 | macro_: hir::MacroDef, |
163 | ) { | 163 | ) { |
164 | // FIXME: Currently proc-macro do not have ast-node, | ||
165 | // such that it does not have source | ||
166 | if macro_.is_proc_macro() { | ||
167 | return; | ||
168 | } | ||
169 | |||
164 | let name = match name { | 170 | let name = match name { |
165 | Some(it) => it, | 171 | Some(it) => it, |
166 | None => return, | 172 | None => return, |