mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 17:24:06 +00:00
restrict cursor range to show assists
This commit is contained in:
parent
e0446a0eb5
commit
53db37f9bf
@ -56,7 +56,7 @@ pub(crate) fn convert_to_guarded_return(acc: &mut Assists, ctx: &AssistContext<'
|
||||
fn if_expr_to_guarded_return(
|
||||
if_expr: ast::IfExpr,
|
||||
acc: &mut Assists,
|
||||
_ctx: &AssistContext<'_>,
|
||||
ctx: &AssistContext<'_>,
|
||||
) -> Option<()> {
|
||||
if if_expr.else_branch().is_some() {
|
||||
return None;
|
||||
@ -64,6 +64,15 @@ fn if_expr_to_guarded_return(
|
||||
|
||||
let cond = if_expr.condition()?;
|
||||
|
||||
let if_token_range = if_expr.if_token()?.text_range();
|
||||
let if_cond_range = cond.syntax().text_range();
|
||||
|
||||
let cursor_in_range =
|
||||
if_token_range.cover(if_cond_range).contains_range(ctx.selection_trimmed());
|
||||
if !cursor_in_range {
|
||||
return None;
|
||||
}
|
||||
|
||||
// Check if there is an IfLet that we can handle.
|
||||
let (if_let_pat, cond_expr) = if is_pattern_cond(cond.clone()) {
|
||||
let let_ = single_let(cond)?;
|
||||
@ -172,6 +181,15 @@ fn let_stmt_to_guarded_return(
|
||||
let pat = let_stmt.pat()?;
|
||||
let expr = let_stmt.initializer()?;
|
||||
|
||||
let let_token_range = let_stmt.let_token()?.text_range();
|
||||
let let_pattern_range = pat.syntax().text_range();
|
||||
let cursor_in_range =
|
||||
let_token_range.cover(let_pattern_range).contains_range(ctx.selection_trimmed());
|
||||
|
||||
if !cursor_in_range {
|
||||
return None;
|
||||
}
|
||||
|
||||
let try_enum =
|
||||
ctx.sema.type_of_expr(&expr).and_then(|ty| TryEnum::from_ty(&ctx.sema, &ty.adjusted()))?;
|
||||
|
||||
@ -713,6 +731,37 @@ fn main() {
|
||||
}
|
||||
}
|
||||
}
|
||||
"#,
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn ignore_inside_if_stmt() {
|
||||
check_assist_not_applicable(
|
||||
convert_to_guarded_return,
|
||||
r#"
|
||||
fn main() {
|
||||
if false {
|
||||
foo()$0;
|
||||
}
|
||||
}
|
||||
"#,
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn ignore_inside_let_initializer() {
|
||||
check_assist_not_applicable(
|
||||
convert_to_guarded_return,
|
||||
r#"
|
||||
//- minicore: option
|
||||
fn foo() -> Option<i32> {
|
||||
None
|
||||
}
|
||||
|
||||
fn main() {
|
||||
let x = foo()$0;
|
||||
}
|
||||
"#,
|
||||
);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user