2019-02-24 05:22:25 -06:00
|
|
|
use test_utils::tested_by;
|
2019-02-03 12:26:35 -06:00
|
|
|
use hir::db::HirDatabase;
|
2019-01-03 06:08:32 -06:00
|
|
|
use ra_syntax::{
|
|
|
|
ast::{self, AstNode},
|
2019-03-30 05:25:53 -05:00
|
|
|
SyntaxNode, TextUnit,
|
|
|
|
SyntaxKind::{WHITESPACE, MATCH_ARM, LAMBDA_EXPR, PATH_EXPR, BREAK_EXPR, LOOP_EXPR, RETURN_EXPR, COMMENT},
|
2019-01-03 06:08:32 -06:00
|
|
|
};
|
|
|
|
|
2019-02-24 04:53:35 -06:00
|
|
|
use crate::{AssistCtx, Assist, AssistId};
|
2019-01-03 06:08:32 -06:00
|
|
|
|
2019-02-11 11:07:21 -06:00
|
|
|
pub(crate) fn introduce_variable(mut ctx: AssistCtx<impl HirDatabase>) -> Option<Assist> {
|
2019-02-24 05:18:10 -06:00
|
|
|
if ctx.frange.range.is_empty() {
|
|
|
|
return None;
|
|
|
|
}
|
2019-03-30 05:25:53 -05:00
|
|
|
let node = ctx.covering_element();
|
2019-02-24 05:22:25 -06:00
|
|
|
if node.kind() == COMMENT {
|
|
|
|
tested_by!(introduce_var_in_comment_is_not_applicable);
|
2019-01-30 14:36:49 -06:00
|
|
|
return None;
|
|
|
|
}
|
2019-02-24 05:22:25 -06:00
|
|
|
let expr = node.ancestors().find_map(valid_target_expr)?;
|
2019-01-28 08:12:07 -06:00
|
|
|
let (anchor_stmt, wrap_in_block) = anchor_stmt(expr)?;
|
2019-03-30 05:25:53 -05:00
|
|
|
let indent = anchor_stmt.prev_sibling_or_token()?.as_token()?;
|
2019-01-03 06:08:32 -06:00
|
|
|
if indent.kind() != WHITESPACE {
|
|
|
|
return None;
|
|
|
|
}
|
2019-02-24 04:53:35 -06:00
|
|
|
ctx.add_action(AssistId("introduce_variable"), "introduce variable", move |edit| {
|
2019-01-03 06:08:32 -06:00
|
|
|
let mut buf = String::new();
|
|
|
|
|
2019-01-28 08:12:07 -06:00
|
|
|
let cursor_offset = if wrap_in_block {
|
|
|
|
buf.push_str("{ let var_name = ");
|
|
|
|
TextUnit::of_str("{ let ")
|
|
|
|
} else {
|
|
|
|
buf.push_str("let var_name = ");
|
|
|
|
TextUnit::of_str("let ")
|
|
|
|
};
|
|
|
|
|
2019-01-03 06:08:32 -06:00
|
|
|
expr.syntax().text().push_to(&mut buf);
|
2019-01-15 22:27:15 -06:00
|
|
|
let full_stmt = ast::ExprStmt::cast(anchor_stmt);
|
|
|
|
let is_full_stmt = if let Some(expr_stmt) = full_stmt {
|
2019-01-03 06:08:32 -06:00
|
|
|
Some(expr.syntax()) == expr_stmt.expr().map(|e| e.syntax())
|
|
|
|
} else {
|
|
|
|
false
|
|
|
|
};
|
|
|
|
if is_full_stmt {
|
2019-02-24 05:22:25 -06:00
|
|
|
tested_by!(test_introduce_var_expr_stmt);
|
2019-01-15 22:27:15 -06:00
|
|
|
if !full_stmt.unwrap().has_semi() {
|
|
|
|
buf.push_str(";");
|
2019-01-13 20:22:53 -06:00
|
|
|
}
|
2019-01-03 06:08:32 -06:00
|
|
|
edit.replace(expr.syntax().range(), buf);
|
|
|
|
} else {
|
|
|
|
buf.push_str(";");
|
2019-02-09 05:41:03 -06:00
|
|
|
|
|
|
|
// We want to maintain the indent level,
|
|
|
|
// but we do not want to duplicate possible
|
|
|
|
// extra newlines in the indent block
|
2019-03-30 05:25:53 -05:00
|
|
|
let text = indent.text();
|
|
|
|
if text.starts_with("\r\n") {
|
|
|
|
buf.push_str("\r\n");
|
|
|
|
buf.push_str(text.trim_start_matches("\r\n"));
|
|
|
|
} else if text.starts_with("\n") {
|
|
|
|
buf.push_str("\n");
|
|
|
|
buf.push_str(text.trim_start_matches("\n"));
|
|
|
|
} else {
|
|
|
|
buf.push_str(text);
|
2019-02-09 05:41:03 -06:00
|
|
|
}
|
|
|
|
|
2019-02-08 17:34:05 -06:00
|
|
|
edit.target(expr.syntax().range());
|
2019-01-03 06:08:32 -06:00
|
|
|
edit.replace(expr.syntax().range(), "var_name".to_string());
|
|
|
|
edit.insert(anchor_stmt.range().start(), buf);
|
2019-01-28 08:12:07 -06:00
|
|
|
if wrap_in_block {
|
|
|
|
edit.insert(anchor_stmt.range().end(), " }");
|
|
|
|
}
|
2019-01-03 06:08:32 -06:00
|
|
|
}
|
2019-01-28 08:12:07 -06:00
|
|
|
edit.set_cursor(anchor_stmt.range().start() + cursor_offset);
|
2019-02-11 11:07:21 -06:00
|
|
|
});
|
|
|
|
|
|
|
|
ctx.build()
|
2019-01-03 09:59:17 -06:00
|
|
|
}
|
2019-01-03 06:08:32 -06:00
|
|
|
|
2019-02-08 17:34:05 -06:00
|
|
|
/// Check whether the node is a valid expression which can be extracted to a variable.
|
2019-01-30 14:36:49 -06:00
|
|
|
/// In general that's true for any expression, but in some cases that would produce invalid code.
|
|
|
|
fn valid_target_expr(node: &SyntaxNode) -> Option<&ast::Expr> {
|
2019-02-06 14:50:26 -06:00
|
|
|
match node.kind() {
|
2019-01-30 14:36:49 -06:00
|
|
|
PATH_EXPR => None,
|
|
|
|
BREAK_EXPR => ast::BreakExpr::cast(node).and_then(|e| e.expr()),
|
|
|
|
RETURN_EXPR => ast::ReturnExpr::cast(node).and_then(|e| e.expr()),
|
|
|
|
LOOP_EXPR => ast::ReturnExpr::cast(node).and_then(|e| e.expr()),
|
|
|
|
_ => ast::Expr::cast(node),
|
2019-02-06 14:50:26 -06:00
|
|
|
}
|
2019-01-30 14:36:49 -06:00
|
|
|
}
|
|
|
|
|
2019-01-28 08:12:07 -06:00
|
|
|
/// Returns the syntax node which will follow the freshly introduced var
|
|
|
|
/// and a boolean indicating whether we have to wrap it within a { } block
|
|
|
|
/// to produce correct code.
|
|
|
|
/// It can be a statement, the last in a block expression or a wanna be block
|
2019-02-08 17:34:05 -06:00
|
|
|
/// expression like a lambda or match arm.
|
2019-01-28 08:12:07 -06:00
|
|
|
fn anchor_stmt(expr: &ast::Expr) -> Option<(&SyntaxNode, bool)> {
|
|
|
|
expr.syntax().ancestors().find_map(|node| {
|
2019-01-03 09:59:17 -06:00
|
|
|
if ast::Stmt::cast(node).is_some() {
|
2019-01-28 08:12:07 -06:00
|
|
|
return Some((node, false));
|
2019-01-03 09:59:17 -06:00
|
|
|
}
|
2019-01-28 08:12:07 -06:00
|
|
|
|
2019-02-08 05:49:43 -06:00
|
|
|
if let Some(expr) = node.parent().and_then(ast::Block::cast).and_then(|it| it.expr()) {
|
2019-01-03 09:59:17 -06:00
|
|
|
if expr.syntax() == node {
|
2019-02-24 05:22:25 -06:00
|
|
|
tested_by!(test_introduce_var_last_expr);
|
2019-01-28 08:12:07 -06:00
|
|
|
return Some((node, false));
|
2019-01-03 06:08:32 -06:00
|
|
|
}
|
2019-01-03 09:59:17 -06:00
|
|
|
}
|
2019-01-28 08:12:07 -06:00
|
|
|
|
|
|
|
if let Some(parent) = node.parent() {
|
2019-01-30 14:36:49 -06:00
|
|
|
if parent.kind() == MATCH_ARM || parent.kind() == LAMBDA_EXPR {
|
2019-01-28 08:12:07 -06:00
|
|
|
return Some((node, true));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
None
|
2019-01-03 09:59:17 -06:00
|
|
|
})
|
2019-01-03 06:08:32 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2019-02-24 05:22:25 -06:00
|
|
|
use test_utils::covers;
|
|
|
|
|
2019-02-24 05:18:10 -06:00
|
|
|
use crate::helpers::{check_assist_range_not_applicable, check_assist_range, check_assist_range_target};
|
2019-01-03 06:08:32 -06:00
|
|
|
|
2019-02-24 05:22:25 -06:00
|
|
|
use super::*;
|
|
|
|
|
2019-01-03 06:08:32 -06:00
|
|
|
#[test]
|
|
|
|
fn test_introduce_var_simple() {
|
2019-01-03 09:59:17 -06:00
|
|
|
check_assist_range(
|
|
|
|
introduce_variable,
|
2019-01-03 06:08:32 -06:00
|
|
|
"
|
|
|
|
fn foo() {
|
|
|
|
foo(<|>1 + 1<|>);
|
|
|
|
}",
|
|
|
|
"
|
|
|
|
fn foo() {
|
|
|
|
let <|>var_name = 1 + 1;
|
|
|
|
foo(var_name);
|
|
|
|
}",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-02-24 05:22:25 -06:00
|
|
|
#[test]
|
|
|
|
fn introduce_var_in_comment_is_not_applicable() {
|
|
|
|
covers!(introduce_var_in_comment_is_not_applicable);
|
|
|
|
check_assist_range_not_applicable(
|
|
|
|
introduce_variable,
|
|
|
|
"fn main() { 1 + /* <|>comment<|> */ 1; }",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-01-03 06:08:32 -06:00
|
|
|
#[test]
|
|
|
|
fn test_introduce_var_expr_stmt() {
|
2019-02-24 05:22:25 -06:00
|
|
|
covers!(test_introduce_var_expr_stmt);
|
2019-01-03 09:59:17 -06:00
|
|
|
check_assist_range(
|
|
|
|
introduce_variable,
|
2019-01-03 06:08:32 -06:00
|
|
|
"
|
|
|
|
fn foo() {
|
|
|
|
<|>1 + 1<|>;
|
|
|
|
}",
|
|
|
|
"
|
|
|
|
fn foo() {
|
|
|
|
let <|>var_name = 1 + 1;
|
2019-02-24 05:22:25 -06:00
|
|
|
}",
|
|
|
|
);
|
|
|
|
check_assist_range(
|
|
|
|
introduce_variable,
|
|
|
|
"
|
|
|
|
fn foo() {
|
|
|
|
<|>{ let x = 0; x }<|>
|
|
|
|
something_else();
|
|
|
|
}",
|
|
|
|
"
|
|
|
|
fn foo() {
|
|
|
|
let <|>var_name = { let x = 0; x };
|
|
|
|
something_else();
|
2019-01-03 06:08:32 -06:00
|
|
|
}",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_introduce_var_part_of_expr_stmt() {
|
2019-01-03 09:59:17 -06:00
|
|
|
check_assist_range(
|
|
|
|
introduce_variable,
|
2019-01-03 06:08:32 -06:00
|
|
|
"
|
|
|
|
fn foo() {
|
|
|
|
<|>1<|> + 1;
|
|
|
|
}",
|
|
|
|
"
|
|
|
|
fn foo() {
|
|
|
|
let <|>var_name = 1;
|
|
|
|
var_name + 1;
|
|
|
|
}",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_introduce_var_last_expr() {
|
2019-02-24 05:22:25 -06:00
|
|
|
covers!(test_introduce_var_last_expr);
|
2019-01-03 09:59:17 -06:00
|
|
|
check_assist_range(
|
|
|
|
introduce_variable,
|
2019-01-03 06:08:32 -06:00
|
|
|
"
|
|
|
|
fn foo() {
|
|
|
|
bar(<|>1 + 1<|>)
|
|
|
|
}",
|
|
|
|
"
|
|
|
|
fn foo() {
|
|
|
|
let <|>var_name = 1 + 1;
|
|
|
|
bar(var_name)
|
|
|
|
}",
|
|
|
|
);
|
2019-01-03 09:59:17 -06:00
|
|
|
check_assist_range(
|
|
|
|
introduce_variable,
|
2019-01-03 06:08:32 -06:00
|
|
|
"
|
|
|
|
fn foo() {
|
|
|
|
<|>bar(1 + 1)<|>
|
|
|
|
}",
|
|
|
|
"
|
|
|
|
fn foo() {
|
|
|
|
let <|>var_name = bar(1 + 1);
|
|
|
|
var_name
|
|
|
|
}",
|
2019-02-24 05:22:25 -06:00
|
|
|
)
|
2019-01-13 19:59:56 -06:00
|
|
|
}
|
2019-01-28 08:12:07 -06:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_introduce_var_in_match_arm_no_block() {
|
|
|
|
check_assist_range(
|
|
|
|
introduce_variable,
|
|
|
|
"
|
|
|
|
fn main() {
|
|
|
|
let x = true;
|
|
|
|
let tuple = match x {
|
|
|
|
true => (<|>2 + 2<|>, true)
|
|
|
|
_ => (0, false)
|
|
|
|
};
|
|
|
|
}
|
|
|
|
",
|
|
|
|
"
|
|
|
|
fn main() {
|
|
|
|
let x = true;
|
|
|
|
let tuple = match x {
|
|
|
|
true => { let <|>var_name = 2 + 2; (var_name, true) }
|
|
|
|
_ => (0, false)
|
|
|
|
};
|
|
|
|
}
|
|
|
|
",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_introduce_var_in_match_arm_with_block() {
|
|
|
|
check_assist_range(
|
|
|
|
introduce_variable,
|
|
|
|
"
|
|
|
|
fn main() {
|
|
|
|
let x = true;
|
|
|
|
let tuple = match x {
|
|
|
|
true => {
|
|
|
|
let y = 1;
|
|
|
|
(<|>2 + y<|>, true)
|
|
|
|
}
|
|
|
|
_ => (0, false)
|
|
|
|
};
|
|
|
|
}
|
|
|
|
",
|
|
|
|
"
|
|
|
|
fn main() {
|
|
|
|
let x = true;
|
|
|
|
let tuple = match x {
|
|
|
|
true => {
|
|
|
|
let y = 1;
|
|
|
|
let <|>var_name = 2 + y;
|
|
|
|
(var_name, true)
|
|
|
|
}
|
|
|
|
_ => (0, false)
|
|
|
|
};
|
|
|
|
}
|
|
|
|
",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_introduce_var_in_closure_no_block() {
|
|
|
|
check_assist_range(
|
|
|
|
introduce_variable,
|
|
|
|
"
|
|
|
|
fn main() {
|
|
|
|
let lambda = |x: u32| <|>x * 2<|>;
|
|
|
|
}
|
|
|
|
",
|
|
|
|
"
|
|
|
|
fn main() {
|
|
|
|
let lambda = |x: u32| { let <|>var_name = x * 2; var_name };
|
|
|
|
}
|
|
|
|
",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_introduce_var_in_closure_with_block() {
|
|
|
|
check_assist_range(
|
|
|
|
introduce_variable,
|
|
|
|
"
|
|
|
|
fn main() {
|
|
|
|
let lambda = |x: u32| { <|>x * 2<|> };
|
|
|
|
}
|
|
|
|
",
|
|
|
|
"
|
|
|
|
fn main() {
|
|
|
|
let lambda = |x: u32| { let <|>var_name = x * 2; var_name };
|
|
|
|
}
|
2019-01-30 14:36:49 -06:00
|
|
|
",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_introduce_var_path_simple() {
|
2019-02-24 05:18:10 -06:00
|
|
|
check_assist_range(
|
2019-01-30 14:36:49 -06:00
|
|
|
introduce_variable,
|
|
|
|
"
|
|
|
|
fn main() {
|
2019-02-24 05:18:10 -06:00
|
|
|
let o = <|>Some(true)<|>;
|
2019-01-30 14:36:49 -06:00
|
|
|
}
|
|
|
|
",
|
|
|
|
"
|
|
|
|
fn main() {
|
|
|
|
let <|>var_name = Some(true);
|
|
|
|
let o = var_name;
|
|
|
|
}
|
|
|
|
",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_introduce_var_path_method() {
|
2019-02-24 05:18:10 -06:00
|
|
|
check_assist_range(
|
2019-01-30 14:36:49 -06:00
|
|
|
introduce_variable,
|
|
|
|
"
|
|
|
|
fn main() {
|
2019-02-24 05:18:10 -06:00
|
|
|
let v = <|>bar.foo()<|>;
|
2019-01-30 14:36:49 -06:00
|
|
|
}
|
|
|
|
",
|
|
|
|
"
|
|
|
|
fn main() {
|
|
|
|
let <|>var_name = bar.foo();
|
|
|
|
let v = var_name;
|
|
|
|
}
|
|
|
|
",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_introduce_var_return() {
|
2019-02-24 05:18:10 -06:00
|
|
|
check_assist_range(
|
2019-01-30 14:36:49 -06:00
|
|
|
introduce_variable,
|
|
|
|
"
|
|
|
|
fn foo() -> u32 {
|
2019-02-24 05:18:10 -06:00
|
|
|
<|>return 2 + 2<|>;
|
2019-01-30 14:36:49 -06:00
|
|
|
}
|
|
|
|
",
|
|
|
|
"
|
|
|
|
fn foo() -> u32 {
|
2019-02-09 05:41:03 -06:00
|
|
|
let <|>var_name = 2 + 2;
|
|
|
|
return var_name;
|
|
|
|
}
|
|
|
|
",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_introduce_var_does_not_add_extra_whitespace() {
|
2019-02-24 05:18:10 -06:00
|
|
|
check_assist_range(
|
2019-02-09 05:41:03 -06:00
|
|
|
introduce_variable,
|
|
|
|
"
|
|
|
|
fn foo() -> u32 {
|
|
|
|
|
|
|
|
|
2019-02-24 05:18:10 -06:00
|
|
|
<|>return 2 + 2<|>;
|
2019-02-09 05:41:03 -06:00
|
|
|
}
|
|
|
|
",
|
|
|
|
"
|
|
|
|
fn foo() -> u32 {
|
|
|
|
|
|
|
|
|
|
|
|
let <|>var_name = 2 + 2;
|
|
|
|
return var_name;
|
|
|
|
}
|
|
|
|
",
|
|
|
|
);
|
|
|
|
|
2019-02-24 05:18:10 -06:00
|
|
|
check_assist_range(
|
2019-02-09 05:41:03 -06:00
|
|
|
introduce_variable,
|
|
|
|
"
|
|
|
|
fn foo() -> u32 {
|
|
|
|
|
2019-02-24 05:18:10 -06:00
|
|
|
<|>return 2 + 2<|>;
|
2019-02-09 05:41:03 -06:00
|
|
|
}
|
|
|
|
",
|
|
|
|
"
|
|
|
|
fn foo() -> u32 {
|
|
|
|
|
|
|
|
let <|>var_name = 2 + 2;
|
|
|
|
return var_name;
|
|
|
|
}
|
|
|
|
",
|
|
|
|
);
|
|
|
|
|
2019-02-24 05:18:10 -06:00
|
|
|
check_assist_range(
|
2019-02-09 05:41:03 -06:00
|
|
|
introduce_variable,
|
|
|
|
"
|
|
|
|
fn foo() -> u32 {
|
|
|
|
let foo = 1;
|
|
|
|
|
|
|
|
// bar
|
|
|
|
|
|
|
|
|
2019-02-24 05:18:10 -06:00
|
|
|
<|>return 2 + 2<|>;
|
2019-02-09 05:41:03 -06:00
|
|
|
}
|
|
|
|
",
|
|
|
|
"
|
|
|
|
fn foo() -> u32 {
|
|
|
|
let foo = 1;
|
|
|
|
|
|
|
|
// bar
|
|
|
|
|
|
|
|
|
2019-01-30 14:36:49 -06:00
|
|
|
let <|>var_name = 2 + 2;
|
|
|
|
return var_name;
|
|
|
|
}
|
|
|
|
",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_introduce_var_break() {
|
2019-02-24 05:18:10 -06:00
|
|
|
check_assist_range(
|
2019-01-30 14:36:49 -06:00
|
|
|
introduce_variable,
|
|
|
|
"
|
|
|
|
fn main() {
|
|
|
|
let result = loop {
|
2019-02-24 05:18:10 -06:00
|
|
|
<|>break 2 + 2<|>;
|
2019-01-30 14:36:49 -06:00
|
|
|
};
|
|
|
|
}
|
|
|
|
",
|
|
|
|
"
|
|
|
|
fn main() {
|
|
|
|
let result = loop {
|
|
|
|
let <|>var_name = 2 + 2;
|
|
|
|
break var_name;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_introduce_var_for_cast() {
|
2019-02-24 05:18:10 -06:00
|
|
|
check_assist_range(
|
2019-01-30 14:36:49 -06:00
|
|
|
introduce_variable,
|
|
|
|
"
|
|
|
|
fn main() {
|
2019-02-24 05:18:10 -06:00
|
|
|
let v = <|>0f32 as u32<|>;
|
2019-01-30 14:36:49 -06:00
|
|
|
}
|
|
|
|
",
|
|
|
|
"
|
|
|
|
fn main() {
|
|
|
|
let <|>var_name = 0f32 as u32;
|
|
|
|
let v = var_name;
|
|
|
|
}
|
|
|
|
",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_introduce_var_for_return_not_applicable() {
|
2019-02-24 05:18:10 -06:00
|
|
|
check_assist_range_not_applicable(introduce_variable, "fn foo() { <|>return<|>; } ");
|
2019-01-30 14:36:49 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_introduce_var_for_break_not_applicable() {
|
2019-02-24 05:18:10 -06:00
|
|
|
check_assist_range_not_applicable(
|
2019-01-30 14:36:49 -06:00
|
|
|
introduce_variable,
|
2019-02-24 05:18:10 -06:00
|
|
|
"fn main() { loop { <|>break<|>; }; }",
|
2019-01-30 14:36:49 -06:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-02-08 17:34:05 -06:00
|
|
|
// FIXME: This is not quite correct, but good enough(tm) for the sorting heuristic
|
|
|
|
#[test]
|
|
|
|
fn introduce_var_target() {
|
2019-02-24 05:18:10 -06:00
|
|
|
check_assist_range_target(
|
2019-02-08 17:34:05 -06:00
|
|
|
introduce_variable,
|
2019-02-24 05:18:10 -06:00
|
|
|
"fn foo() -> u32 { <|>return 2 + 2<|>; }",
|
2019-02-08 17:34:05 -06:00
|
|
|
"2 + 2",
|
|
|
|
);
|
|
|
|
|
|
|
|
check_assist_range_target(
|
|
|
|
introduce_variable,
|
|
|
|
"
|
|
|
|
fn main() {
|
|
|
|
let x = true;
|
|
|
|
let tuple = match x {
|
|
|
|
true => (<|>2 + 2<|>, true)
|
|
|
|
_ => (0, false)
|
|
|
|
};
|
|
|
|
}
|
|
|
|
",
|
|
|
|
"2 + 2",
|
|
|
|
);
|
|
|
|
}
|
2019-01-03 06:08:32 -06:00
|
|
|
}
|