Unnamed repository; edit this file 'description' to name the repository.
-rw-r--r--crates/ide-completion/src/render.rs6
1 files changed, 4 insertions, 2 deletions
diff --git a/crates/ide-completion/src/render.rs b/crates/ide-completion/src/render.rs
index 005ab3a895..19e46889a5 100644
--- a/crates/ide-completion/src/render.rs
+++ b/crates/ide-completion/src/render.rs
@@ -134,8 +134,10 @@ pub(crate) fn render_field(
.lookup_by(name.clone());
item.insert_text(escaped_name);
if let Some(receiver) = &dot_access.receiver {
- if let Some(ref_match) = compute_ref_match(ctx.completion, ty) {
- item.ref_match(ref_match, receiver.syntax().text_range().start());
+ if let Some(original) = ctx.completion.sema.original_ast_node(receiver.clone()) {
+ if let Some(ref_match) = compute_ref_match(ctx.completion, ty) {
+ item.ref_match(ref_match, original.syntax().text_range().start());
+ }
}
}
item.build()