aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_ide/src/completion/completion_context.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ra_ide/src/completion/completion_context.rs')
-rw-r--r--crates/ra_ide/src/completion/completion_context.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/crates/ra_ide/src/completion/completion_context.rs b/crates/ra_ide/src/completion/completion_context.rs
index 8e1f6dd98..02811a91e 100644
--- a/crates/ra_ide/src/completion/completion_context.rs
+++ b/crates/ra_ide/src/completion/completion_context.rs
@@ -54,7 +54,7 @@ pub(crate) struct CompletionContext<'a> {
54 /// `true` if we are a statement or a last expr in the block. 54 /// `true` if we are a statement or a last expr in the block.
55 pub(super) can_be_stmt: bool, 55 pub(super) can_be_stmt: bool,
56 /// `true` if we expect an expression at the cursor position. 56 /// `true` if we expect an expression at the cursor position.
57 pub(super) can_be_expr: bool, 57 pub(super) is_expr: bool,
58 /// Something is typed at the "top" level, in module or impl/trait. 58 /// Something is typed at the "top" level, in module or impl/trait.
59 pub(super) is_new_item: bool, 59 pub(super) is_new_item: bool,
60 /// The receiver if this is a field or method access, i.e. writing something.<|> 60 /// The receiver if this is a field or method access, i.e. writing something.<|>
@@ -129,7 +129,7 @@ impl<'a> CompletionContext<'a> {
129 path_prefix: None, 129 path_prefix: None,
130 after_if: false, 130 after_if: false,
131 can_be_stmt: false, 131 can_be_stmt: false,
132 can_be_expr: false, 132 is_expr: false,
133 is_new_item: false, 133 is_new_item: false,
134 dot_receiver: None, 134 dot_receiver: None,
135 is_call: false, 135 is_call: false,
@@ -406,7 +406,7 @@ impl<'a> CompletionContext<'a> {
406 None 406 None
407 }) 407 })
408 .unwrap_or(false); 408 .unwrap_or(false);
409 self.can_be_expr = path.syntax().parent().and_then(ast::PathExpr::cast).is_some(); 409 self.is_expr = path.syntax().parent().and_then(ast::PathExpr::cast).is_some();
410 410
411 if let Some(off) = name_ref.syntax().text_range().start().checked_sub(2.into()) { 411 if let Some(off) = name_ref.syntax().text_range().start().checked_sub(2.into()) {
412 if let Some(if_expr) = 412 if let Some(if_expr) =