diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-08-21 18:15:09 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2020-08-21 18:15:09 +0100 |
commit | aab5aaccf2b1af8f1820a244a2c293c7460f9eb6 (patch) | |
tree | 60f971e2be8341c7759defc6662f83d6c47d0fdd /crates/ide/src/completion | |
parent | df54561a689a9eb7b1962b69a397a1221200c116 (diff) | |
parent | 95f33bb5f73a7f9b7922eef14b996c0a489a6404 (diff) |
Merge #5838
5838: :arrow_up: autocfg
r=matklad a=matklad
bors r+
🤖
Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'crates/ide/src/completion')
-rw-r--r-- | crates/ide/src/completion/completion_context.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ide/src/completion/completion_context.rs b/crates/ide/src/completion/completion_context.rs index 85456a66f..5adac7ebc 100644 --- a/crates/ide/src/completion/completion_context.rs +++ b/crates/ide/src/completion/completion_context.rs | |||
@@ -457,7 +457,7 @@ impl<'a> CompletionContext<'a> { | |||
457 | if let Some(method_call_expr) = ast::MethodCallExpr::cast(parent) { | 457 | if let Some(method_call_expr) = ast::MethodCallExpr::cast(parent) { |
458 | // As above | 458 | // As above |
459 | self.dot_receiver = method_call_expr | 459 | self.dot_receiver = method_call_expr |
460 | .expr() | 460 | .receiver() |
461 | .map(|e| e.syntax().text_range()) | 461 | .map(|e| e.syntax().text_range()) |
462 | .and_then(|r| find_node_with_range(original_file, r)); | 462 | .and_then(|r| find_node_with_range(original_file, r)); |
463 | self.is_call = true; | 463 | self.is_call = true; |