2021-02-03 01:57:11 -06:00
|
|
|
use either::Either;
|
|
|
|
use hir::{HirDisplay, Local};
|
2021-02-03 11:31:12 -06:00
|
|
|
use ide_db::{
|
|
|
|
defs::{Definition, NameRefClass},
|
|
|
|
search::SearchScope,
|
|
|
|
};
|
|
|
|
use itertools::Itertools;
|
2021-02-03 01:57:11 -06:00
|
|
|
use stdx::format_to;
|
|
|
|
use syntax::{
|
|
|
|
ast::{
|
|
|
|
self,
|
|
|
|
edit::{AstNodeEdit, IndentLevel},
|
|
|
|
AstNode, NameOwner,
|
|
|
|
},
|
|
|
|
Direction, SyntaxElement,
|
|
|
|
SyntaxKind::{self, BLOCK_EXPR, BREAK_EXPR, COMMENT, PATH_EXPR, RETURN_EXPR},
|
|
|
|
SyntaxNode, TextRange,
|
|
|
|
};
|
|
|
|
use test_utils::mark;
|
|
|
|
|
|
|
|
use crate::{
|
|
|
|
assist_context::{AssistContext, Assists},
|
|
|
|
AssistId,
|
|
|
|
};
|
|
|
|
|
|
|
|
// Assist: extract_function
|
|
|
|
//
|
|
|
|
// Extracts selected statements into new function.
|
|
|
|
//
|
|
|
|
// ```
|
|
|
|
// fn main() {
|
|
|
|
// let n = 1;
|
|
|
|
// $0let m = n + 2;
|
|
|
|
// let k = m + n;$0
|
|
|
|
// let g = 3;
|
|
|
|
// }
|
|
|
|
// ```
|
|
|
|
// ->
|
|
|
|
// ```
|
|
|
|
// fn main() {
|
|
|
|
// let n = 1;
|
|
|
|
// fun_name(n);
|
|
|
|
// let g = 3;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// fn $0fun_name(n: i32) {
|
|
|
|
// let m = n + 2;
|
|
|
|
// let k = m + n;
|
|
|
|
// }
|
|
|
|
// ```
|
|
|
|
pub(crate) fn extract_function(acc: &mut Assists, ctx: &AssistContext) -> Option<()> {
|
|
|
|
if ctx.frange.range.is_empty() {
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
let node = ctx.covering_element();
|
|
|
|
if node.kind() == COMMENT {
|
|
|
|
mark::hit!(extract_function_in_comment_is_not_applicable);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
let node = match node {
|
|
|
|
syntax::NodeOrToken::Node(n) => n,
|
|
|
|
syntax::NodeOrToken::Token(t) => t.parent(),
|
|
|
|
};
|
|
|
|
|
|
|
|
let mut body = None;
|
|
|
|
if node.text_range() == ctx.frange.range {
|
|
|
|
body = FunctionBody::from_whole_node(node.clone());
|
|
|
|
}
|
|
|
|
if body.is_none() && node.kind() == BLOCK_EXPR {
|
|
|
|
body = FunctionBody::from_range(&node, ctx.frange.range);
|
|
|
|
}
|
2021-02-03 03:27:53 -06:00
|
|
|
if let Some(parent) = node.parent() {
|
|
|
|
if body.is_none() && parent.kind() == BLOCK_EXPR {
|
|
|
|
body = FunctionBody::from_range(&parent, ctx.frange.range);
|
|
|
|
}
|
|
|
|
}
|
2021-02-03 01:57:11 -06:00
|
|
|
if body.is_none() {
|
|
|
|
body = FunctionBody::from_whole_node(node.clone());
|
|
|
|
}
|
|
|
|
if body.is_none() {
|
|
|
|
body = node.ancestors().find_map(FunctionBody::from_whole_node);
|
|
|
|
}
|
|
|
|
let body = body?;
|
|
|
|
|
2021-02-03 11:31:12 -06:00
|
|
|
let vars_used_in_body = vars_used_in_body(&body, &ctx);
|
2021-02-03 03:27:53 -06:00
|
|
|
let mut self_param = None;
|
2021-02-03 11:31:12 -06:00
|
|
|
let param_pats: Vec<_> = vars_used_in_body
|
|
|
|
.iter()
|
2021-02-03 03:27:53 -06:00
|
|
|
.map(|node| node.source(ctx.db()))
|
|
|
|
.filter(|src| {
|
|
|
|
src.file_id.original_file(ctx.db()) == ctx.frange.file_id
|
|
|
|
&& !body.contains_node(&either_syntax(&src.value))
|
|
|
|
})
|
|
|
|
.filter_map(|src| match src.value {
|
|
|
|
Either::Left(pat) => Some(pat),
|
|
|
|
Either::Right(it) => {
|
|
|
|
// we filter self param, as there can only be one
|
|
|
|
self_param = Some(it);
|
|
|
|
None
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.collect();
|
2021-02-03 01:57:11 -06:00
|
|
|
|
2021-02-03 03:27:53 -06:00
|
|
|
let anchor = if self_param.is_some() { Anchor::Method } else { Anchor::Freestanding };
|
|
|
|
let insert_after = body.scope_for_fn_insertion(anchor)?;
|
2021-02-03 01:57:11 -06:00
|
|
|
let module = ctx.sema.scope(&insert_after).module()?;
|
|
|
|
|
2021-02-03 11:31:12 -06:00
|
|
|
let vars_defined_in_body = vars_defined_in_body(&body, ctx);
|
|
|
|
|
|
|
|
let vars_in_body_used_afterwards: Vec<_> = vars_defined_in_body
|
|
|
|
.iter()
|
|
|
|
.copied()
|
|
|
|
.filter(|node| {
|
|
|
|
let usages = Definition::Local(*node)
|
|
|
|
.usages(&ctx.sema)
|
|
|
|
.in_scope(SearchScope::single_file(ctx.frange.file_id))
|
|
|
|
.all();
|
|
|
|
let mut usages = usages.iter().flat_map(|(_, rs)| rs.iter());
|
|
|
|
|
|
|
|
usages.any(|reference| body.preceedes_range(reference.range))
|
|
|
|
})
|
|
|
|
.collect();
|
|
|
|
|
2021-02-03 03:27:53 -06:00
|
|
|
let params = param_pats
|
|
|
|
.into_iter()
|
|
|
|
.map(|pat| {
|
2021-02-03 08:45:36 -06:00
|
|
|
let name = pat.name().unwrap().to_string();
|
|
|
|
|
|
|
|
let ty = ctx
|
|
|
|
.sema
|
|
|
|
.type_of_pat(&pat.into())
|
2021-02-03 03:27:53 -06:00
|
|
|
.and_then(|ty| ty.display_source_code(ctx.db(), module.into()).ok())
|
|
|
|
.unwrap_or_else(|| "()".to_string());
|
|
|
|
|
|
|
|
Param { name, ty }
|
|
|
|
})
|
|
|
|
.collect::<Vec<_>>();
|
|
|
|
|
2021-02-03 01:57:11 -06:00
|
|
|
let expr = body.tail_expr();
|
|
|
|
let ret_ty = match expr {
|
2021-02-03 11:31:12 -06:00
|
|
|
Some(expr) => Some(ctx.sema.type_of_expr(&expr)?),
|
2021-02-03 01:57:11 -06:00
|
|
|
None => None,
|
|
|
|
};
|
|
|
|
|
2021-02-03 11:31:12 -06:00
|
|
|
let has_unit_ret = ret_ty.as_ref().map_or(true, |it| it.is_unit());
|
|
|
|
if stdx::never!(!vars_in_body_used_afterwards.is_empty() && !has_unit_ret) {
|
|
|
|
// We should not have variables that outlive body if we have expression block
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
2021-02-03 01:57:11 -06:00
|
|
|
let target_range = match &body {
|
|
|
|
FunctionBody::Expr(expr) => expr.syntax().text_range(),
|
|
|
|
FunctionBody::Span { .. } => ctx.frange.range,
|
|
|
|
};
|
|
|
|
|
|
|
|
acc.add(
|
|
|
|
AssistId("extract_function", crate::AssistKind::RefactorExtract),
|
|
|
|
"Extract into function",
|
|
|
|
target_range,
|
|
|
|
move |builder| {
|
2021-02-03 11:31:12 -06:00
|
|
|
let fun = Function {
|
|
|
|
name: "fun_name".to_string(),
|
|
|
|
self_param,
|
|
|
|
params,
|
|
|
|
ret_ty,
|
|
|
|
body,
|
|
|
|
vars_in_body_used_afterwards,
|
|
|
|
};
|
2021-02-03 01:57:11 -06:00
|
|
|
|
2021-02-03 11:31:12 -06:00
|
|
|
builder.replace(target_range, format_replacement(ctx, &fun));
|
2021-02-03 01:57:11 -06:00
|
|
|
|
|
|
|
let indent = IndentLevel::from_node(&insert_after);
|
|
|
|
|
2021-02-03 11:31:12 -06:00
|
|
|
let fn_def = format_function(ctx, module, &fun, indent);
|
2021-02-03 01:57:11 -06:00
|
|
|
let insert_offset = insert_after.text_range().end();
|
|
|
|
builder.insert(insert_offset, fn_def);
|
|
|
|
},
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-02-03 11:31:12 -06:00
|
|
|
fn format_replacement(ctx: &AssistContext, fun: &Function) -> String {
|
2021-02-03 01:57:11 -06:00
|
|
|
let mut buf = String::new();
|
2021-02-03 11:31:12 -06:00
|
|
|
|
|
|
|
match fun.vars_in_body_used_afterwards.len() {
|
|
|
|
0 => {}
|
|
|
|
1 => format_to!(
|
|
|
|
buf,
|
|
|
|
"let {} = ",
|
|
|
|
fun.vars_in_body_used_afterwards[0].name(ctx.db()).unwrap()
|
|
|
|
),
|
|
|
|
_ => {
|
|
|
|
buf.push_str("let (");
|
|
|
|
format_to!(buf, "{}", fun.vars_in_body_used_afterwards[0].name(ctx.db()).unwrap());
|
|
|
|
for local in fun.vars_in_body_used_afterwards.iter().skip(1) {
|
|
|
|
format_to!(buf, ", {}", local.name(ctx.db()).unwrap());
|
|
|
|
}
|
|
|
|
buf.push_str(") = ");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-03 03:27:53 -06:00
|
|
|
if fun.self_param.is_some() {
|
|
|
|
format_to!(buf, "self.");
|
|
|
|
}
|
2021-02-03 01:57:11 -06:00
|
|
|
format_to!(buf, "{}(", fun.name);
|
|
|
|
{
|
|
|
|
let mut it = fun.params.iter();
|
|
|
|
if let Some(param) = it.next() {
|
|
|
|
format_to!(buf, "{}", param.name);
|
|
|
|
}
|
|
|
|
for param in it {
|
|
|
|
format_to!(buf, ", {}", param.name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
format_to!(buf, ")");
|
|
|
|
|
|
|
|
if fun.has_unit_ret() {
|
|
|
|
format_to!(buf, ";");
|
|
|
|
}
|
|
|
|
|
|
|
|
buf
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Function {
|
|
|
|
name: String,
|
2021-02-03 11:31:12 -06:00
|
|
|
self_param: Option<ast::SelfParam>,
|
2021-02-03 01:57:11 -06:00
|
|
|
params: Vec<Param>,
|
2021-02-03 11:31:12 -06:00
|
|
|
ret_ty: Option<hir::Type>,
|
2021-02-03 01:57:11 -06:00
|
|
|
body: FunctionBody,
|
2021-02-03 11:31:12 -06:00
|
|
|
vars_in_body_used_afterwards: Vec<Local>,
|
2021-02-03 01:57:11 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Function {
|
|
|
|
fn has_unit_ret(&self) -> bool {
|
|
|
|
match &self.ret_ty {
|
2021-02-03 11:31:12 -06:00
|
|
|
Some(ty) => ty.is_unit(),
|
2021-02-03 01:57:11 -06:00
|
|
|
None => true,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
struct Param {
|
|
|
|
name: String,
|
|
|
|
ty: String,
|
|
|
|
}
|
|
|
|
|
2021-02-03 11:31:12 -06:00
|
|
|
fn format_function(
|
|
|
|
ctx: &AssistContext,
|
|
|
|
module: hir::Module,
|
|
|
|
fun: &Function,
|
|
|
|
indent: IndentLevel,
|
|
|
|
) -> String {
|
2021-02-03 01:57:11 -06:00
|
|
|
let mut fn_def = String::new();
|
|
|
|
format_to!(fn_def, "\n\n{}fn $0{}(", indent, fun.name);
|
|
|
|
{
|
|
|
|
let mut it = fun.params.iter();
|
2021-02-03 03:27:53 -06:00
|
|
|
if let Some(self_param) = &fun.self_param {
|
|
|
|
format_to!(fn_def, "{}", self_param);
|
|
|
|
} else if let Some(param) = it.next() {
|
2021-02-03 01:57:11 -06:00
|
|
|
format_to!(fn_def, "{}: {}", param.name, param.ty);
|
|
|
|
}
|
|
|
|
for param in it {
|
|
|
|
format_to!(fn_def, ", {}: {}", param.name, param.ty);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
format_to!(fn_def, ")");
|
|
|
|
if !fun.has_unit_ret() {
|
|
|
|
if let Some(ty) = &fun.ret_ty {
|
2021-02-03 11:31:12 -06:00
|
|
|
format_to!(fn_def, " -> {}", format_type(ty, ctx, module));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
match fun.vars_in_body_used_afterwards.as_slice() {
|
|
|
|
[] => {}
|
|
|
|
[var] => {
|
|
|
|
format_to!(fn_def, " -> {}", format_type(&var.ty(ctx.db()), ctx, module));
|
|
|
|
}
|
|
|
|
[v0, vs @ ..] => {
|
|
|
|
format_to!(fn_def, " -> ({}", format_type(&v0.ty(ctx.db()), ctx, module));
|
|
|
|
for var in vs {
|
|
|
|
format_to!(fn_def, ", {}", format_type(&var.ty(ctx.db()), ctx, module));
|
|
|
|
}
|
|
|
|
fn_def.push(')');
|
|
|
|
}
|
2021-02-03 01:57:11 -06:00
|
|
|
}
|
|
|
|
}
|
2021-02-03 11:31:12 -06:00
|
|
|
fn_def.push_str(" {");
|
2021-02-03 01:57:11 -06:00
|
|
|
|
|
|
|
match &fun.body {
|
|
|
|
FunctionBody::Expr(expr) => {
|
|
|
|
fn_def.push('\n');
|
|
|
|
let expr = expr.indent(indent);
|
|
|
|
format_to!(fn_def, "{}{}", indent + 1, expr.syntax());
|
|
|
|
fn_def.push('\n');
|
|
|
|
}
|
|
|
|
FunctionBody::Span { elements, leading_indent } => {
|
|
|
|
format_to!(fn_def, "{}", leading_indent);
|
|
|
|
for e in elements {
|
|
|
|
format_to!(fn_def, "{}", e);
|
|
|
|
}
|
|
|
|
if !fn_def.ends_with('\n') {
|
|
|
|
fn_def.push('\n');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-02-03 11:31:12 -06:00
|
|
|
|
|
|
|
match fun.vars_in_body_used_afterwards.as_slice() {
|
|
|
|
[] => {}
|
|
|
|
[var] => format_to!(fn_def, "{}{}\n", indent + 1, var.name(ctx.db()).unwrap()),
|
|
|
|
[v0, vs @ ..] => {
|
|
|
|
format_to!(fn_def, "{}({}", indent + 1, v0.name(ctx.db()).unwrap());
|
|
|
|
for var in vs {
|
|
|
|
format_to!(fn_def, ", {}", var.name(ctx.db()).unwrap());
|
|
|
|
}
|
|
|
|
fn_def.push_str(")\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-03 01:57:11 -06:00
|
|
|
format_to!(fn_def, "{}}}", indent);
|
|
|
|
|
|
|
|
fn_def
|
|
|
|
}
|
|
|
|
|
2021-02-03 11:31:12 -06:00
|
|
|
fn format_type(ty: &hir::Type, ctx: &AssistContext, module: hir::Module) -> String {
|
|
|
|
ty.display_source_code(ctx.db(), module.into()).ok().unwrap_or_else(|| "()".to_string())
|
|
|
|
}
|
|
|
|
|
2021-02-03 01:57:11 -06:00
|
|
|
#[derive(Debug)]
|
|
|
|
enum FunctionBody {
|
|
|
|
Expr(ast::Expr),
|
|
|
|
Span { elements: Vec<SyntaxElement>, leading_indent: String },
|
|
|
|
}
|
|
|
|
|
2021-02-03 03:27:53 -06:00
|
|
|
enum Anchor {
|
|
|
|
Freestanding,
|
|
|
|
Method,
|
|
|
|
}
|
|
|
|
|
2021-02-03 01:57:11 -06:00
|
|
|
impl FunctionBody {
|
|
|
|
fn from_whole_node(node: SyntaxNode) -> Option<Self> {
|
|
|
|
match node.kind() {
|
|
|
|
PATH_EXPR => None,
|
|
|
|
BREAK_EXPR => ast::BreakExpr::cast(node).and_then(|e| e.expr()).map(Self::Expr),
|
|
|
|
RETURN_EXPR => ast::ReturnExpr::cast(node).and_then(|e| e.expr()).map(Self::Expr),
|
|
|
|
BLOCK_EXPR => ast::BlockExpr::cast(node)
|
|
|
|
.filter(|it| it.is_standalone())
|
|
|
|
.map(Into::into)
|
|
|
|
.map(Self::Expr),
|
|
|
|
_ => ast::Expr::cast(node).map(Self::Expr),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn from_range(node: &SyntaxNode, range: TextRange) -> Option<FunctionBody> {
|
|
|
|
let mut first = node.token_at_offset(range.start()).left_biased()?;
|
|
|
|
let last = node.token_at_offset(range.end()).right_biased()?;
|
|
|
|
|
|
|
|
let mut leading_indent = String::new();
|
|
|
|
|
|
|
|
let leading_trivia = first
|
|
|
|
.siblings_with_tokens(Direction::Prev)
|
|
|
|
.skip(1)
|
|
|
|
.take_while(|e| e.kind() == SyntaxKind::WHITESPACE && e.as_token().is_some());
|
|
|
|
|
|
|
|
for e in leading_trivia {
|
|
|
|
let token = e.as_token().unwrap();
|
|
|
|
let text = token.text();
|
|
|
|
match text.rfind('\n') {
|
|
|
|
Some(pos) => {
|
|
|
|
leading_indent = text[pos..].to_owned();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
None => first = token.clone(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut elements: Vec<_> = first
|
|
|
|
.siblings_with_tokens(Direction::Next)
|
|
|
|
.take_while(|e| e.as_token() != Some(&last))
|
|
|
|
.collect();
|
|
|
|
|
|
|
|
if !(last.kind() == SyntaxKind::WHITESPACE && last.text().lines().count() <= 2) {
|
|
|
|
elements.push(last.into());
|
|
|
|
}
|
|
|
|
|
|
|
|
Some(FunctionBody::Span { elements, leading_indent })
|
|
|
|
}
|
|
|
|
|
|
|
|
fn tail_expr(&self) -> Option<ast::Expr> {
|
|
|
|
match &self {
|
|
|
|
FunctionBody::Expr(expr) => Some(expr.clone()),
|
|
|
|
FunctionBody::Span { elements, .. } => {
|
|
|
|
elements.iter().rev().find_map(|e| e.as_node()).cloned().and_then(ast::Expr::cast)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-03 03:27:53 -06:00
|
|
|
fn scope_for_fn_insertion(&self, anchor: Anchor) -> Option<SyntaxNode> {
|
2021-02-03 01:57:11 -06:00
|
|
|
match self {
|
2021-02-03 03:27:53 -06:00
|
|
|
FunctionBody::Expr(e) => scope_for_fn_insertion(e.syntax(), anchor),
|
2021-02-03 01:57:11 -06:00
|
|
|
FunctionBody::Span { elements, .. } => {
|
|
|
|
let node = elements.iter().find_map(|e| e.as_node())?;
|
2021-02-03 03:27:53 -06:00
|
|
|
scope_for_fn_insertion(&node, anchor)
|
2021-02-03 01:57:11 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn descendants(&self) -> impl Iterator<Item = SyntaxNode> + '_ {
|
|
|
|
match self {
|
|
|
|
FunctionBody::Expr(expr) => Either::Right(expr.syntax().descendants()),
|
|
|
|
FunctionBody::Span { elements, .. } => Either::Left(
|
|
|
|
elements
|
|
|
|
.iter()
|
|
|
|
.filter_map(SyntaxElement::as_node)
|
|
|
|
.flat_map(SyntaxNode::descendants),
|
|
|
|
),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-03 11:31:12 -06:00
|
|
|
fn text_range(&self) -> TextRange {
|
|
|
|
match self {
|
|
|
|
FunctionBody::Expr(expr) => expr.syntax().text_range(),
|
|
|
|
FunctionBody::Span { elements, .. } => TextRange::new(
|
|
|
|
elements.first().unwrap().text_range().start(),
|
|
|
|
elements.last().unwrap().text_range().end(),
|
|
|
|
),
|
2021-02-03 01:57:11 -06:00
|
|
|
}
|
2021-02-03 11:31:12 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fn contains_range(&self, range: TextRange) -> bool {
|
|
|
|
self.text_range().contains_range(range)
|
|
|
|
}
|
2021-02-03 01:57:11 -06:00
|
|
|
|
2021-02-03 11:31:12 -06:00
|
|
|
fn preceedes_range(&self, range: TextRange) -> bool {
|
|
|
|
self.text_range().end() <= range.start()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn contains_node(&self, node: &SyntaxNode) -> bool {
|
|
|
|
self.contains_range(node.text_range())
|
2021-02-03 01:57:11 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-03 03:27:53 -06:00
|
|
|
fn scope_for_fn_insertion(node: &SyntaxNode, anchor: Anchor) -> Option<SyntaxNode> {
|
2021-02-03 01:57:11 -06:00
|
|
|
let mut ancestors = node.ancestors().peekable();
|
|
|
|
let mut last_ancestor = None;
|
|
|
|
while let Some(next_ancestor) = ancestors.next() {
|
|
|
|
match next_ancestor.kind() {
|
|
|
|
SyntaxKind::SOURCE_FILE => break,
|
|
|
|
SyntaxKind::ITEM_LIST => {
|
2021-02-03 03:27:53 -06:00
|
|
|
if !matches!(anchor, Anchor::Freestanding) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if ancestors.peek().map(SyntaxNode::kind) == Some(SyntaxKind::MODULE) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
SyntaxKind::ASSOC_ITEM_LIST => {
|
|
|
|
if !matches!(anchor, Anchor::Method) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if ancestors.peek().map(SyntaxNode::kind) == Some(SyntaxKind::IMPL) {
|
2021-02-03 01:57:11 -06:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
last_ancestor = Some(next_ancestor);
|
|
|
|
}
|
|
|
|
last_ancestor
|
|
|
|
}
|
|
|
|
|
2021-02-03 03:27:53 -06:00
|
|
|
fn either_syntax(value: &Either<ast::IdentPat, ast::SelfParam>) -> &SyntaxNode {
|
|
|
|
match value {
|
|
|
|
Either::Left(pat) => pat.syntax(),
|
|
|
|
Either::Right(it) => it.syntax(),
|
|
|
|
}
|
2021-02-03 01:57:11 -06:00
|
|
|
}
|
|
|
|
|
2021-02-03 11:31:12 -06:00
|
|
|
/// Returns a vector of local variables that are referenced in `body`
|
|
|
|
fn vars_used_in_body(body: &FunctionBody, ctx: &AssistContext) -> Vec<Local> {
|
2021-02-03 03:27:53 -06:00
|
|
|
body.descendants()
|
2021-02-03 01:57:11 -06:00
|
|
|
.filter_map(ast::NameRef::cast)
|
|
|
|
.filter_map(|name_ref| NameRefClass::classify(&ctx.sema, &name_ref))
|
|
|
|
.map(|name_kind| name_kind.referenced(ctx.db()))
|
|
|
|
.filter_map(|definition| match definition {
|
|
|
|
Definition::Local(local) => Some(local),
|
|
|
|
_ => None,
|
|
|
|
})
|
2021-02-03 11:31:12 -06:00
|
|
|
.unique()
|
|
|
|
.collect()
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns a vector of local variables that are defined in `body`
|
|
|
|
fn vars_defined_in_body(body: &FunctionBody, ctx: &AssistContext) -> Vec<Local> {
|
|
|
|
body.descendants()
|
|
|
|
.filter_map(ast::IdentPat::cast)
|
|
|
|
.filter_map(|let_stmt| ctx.sema.to_def(&let_stmt))
|
|
|
|
.unique()
|
2021-02-03 01:57:11 -06:00
|
|
|
.collect()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use crate::tests::{check_assist, check_assist_not_applicable};
|
|
|
|
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn no_args_from_binary_expr() {
|
|
|
|
check_assist(
|
|
|
|
extract_function,
|
|
|
|
r#"
|
|
|
|
fn foo() {
|
|
|
|
foo($01 + 1$0);
|
|
|
|
}"#,
|
|
|
|
r#"
|
|
|
|
fn foo() {
|
|
|
|
foo(fun_name());
|
|
|
|
}
|
|
|
|
|
|
|
|
fn $0fun_name() -> i32 {
|
|
|
|
1 + 1
|
|
|
|
}"#,
|
|
|
|
);
|
|
|
|
}
|
2021-02-03 03:27:53 -06:00
|
|
|
|
2021-02-03 01:57:11 -06:00
|
|
|
#[test]
|
|
|
|
fn no_args_from_binary_expr_in_module() {
|
|
|
|
check_assist(
|
|
|
|
extract_function,
|
|
|
|
r#"
|
|
|
|
mod bar {
|
|
|
|
fn foo() {
|
|
|
|
foo($01 + 1$0);
|
|
|
|
}
|
|
|
|
}"#,
|
|
|
|
r#"
|
|
|
|
mod bar {
|
|
|
|
fn foo() {
|
|
|
|
foo(fun_name());
|
|
|
|
}
|
|
|
|
|
|
|
|
fn $0fun_name() -> i32 {
|
|
|
|
1 + 1
|
|
|
|
}
|
|
|
|
}"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn no_args_from_binary_expr_indented() {
|
|
|
|
check_assist(
|
|
|
|
extract_function,
|
|
|
|
r#"
|
|
|
|
fn foo() {
|
|
|
|
$0{ 1 + 1 }$0;
|
|
|
|
}"#,
|
|
|
|
r#"
|
|
|
|
fn foo() {
|
|
|
|
fun_name();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn $0fun_name() -> i32 {
|
|
|
|
{ 1 + 1 }
|
|
|
|
}"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn no_args_from_stmt_with_last_expr() {
|
|
|
|
check_assist(
|
|
|
|
extract_function,
|
|
|
|
r#"
|
|
|
|
fn foo() -> i32 {
|
|
|
|
let k = 1;
|
|
|
|
$0let m = 1;
|
|
|
|
m + 1$0
|
|
|
|
}"#,
|
|
|
|
r#"
|
|
|
|
fn foo() -> i32 {
|
|
|
|
let k = 1;
|
|
|
|
fun_name()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn $0fun_name() -> i32 {
|
|
|
|
let m = 1;
|
|
|
|
m + 1
|
|
|
|
}"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn no_args_from_stmt_unit() {
|
|
|
|
check_assist(
|
|
|
|
extract_function,
|
|
|
|
r#"
|
|
|
|
fn foo() {
|
|
|
|
let k = 3;
|
|
|
|
$0let m = 1;
|
|
|
|
let n = m + 1;$0
|
|
|
|
let g = 5;
|
|
|
|
}"#,
|
|
|
|
r#"
|
|
|
|
fn foo() {
|
|
|
|
let k = 3;
|
|
|
|
fun_name();
|
|
|
|
let g = 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn $0fun_name() {
|
|
|
|
let m = 1;
|
|
|
|
let n = m + 1;
|
|
|
|
}"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn no_args_from_loop_unit() {
|
|
|
|
check_assist(
|
|
|
|
extract_function,
|
|
|
|
r#"
|
|
|
|
fn foo() {
|
|
|
|
$0loop {
|
|
|
|
let m = 1;
|
|
|
|
}$0
|
|
|
|
}"#,
|
|
|
|
r#"
|
|
|
|
fn foo() {
|
|
|
|
fun_name()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn $0fun_name() -> ! {
|
|
|
|
loop {
|
|
|
|
let m = 1;
|
|
|
|
}
|
|
|
|
}"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn no_args_from_loop_with_return() {
|
|
|
|
check_assist(
|
|
|
|
extract_function,
|
|
|
|
r#"
|
|
|
|
fn foo() {
|
|
|
|
let v = $0loop {
|
|
|
|
let m = 1;
|
|
|
|
break m;
|
|
|
|
}$0;
|
|
|
|
}"#,
|
|
|
|
r#"
|
|
|
|
fn foo() {
|
|
|
|
let v = fun_name();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn $0fun_name() -> i32 {
|
|
|
|
loop {
|
|
|
|
let m = 1;
|
|
|
|
break m;
|
|
|
|
}
|
|
|
|
}"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn no_args_from_match() {
|
|
|
|
check_assist(
|
|
|
|
extract_function,
|
|
|
|
r#"
|
|
|
|
fn foo() {
|
|
|
|
let v: i32 = $0match Some(1) {
|
|
|
|
Some(x) => x,
|
|
|
|
None => 0,
|
|
|
|
}$0;
|
|
|
|
}"#,
|
|
|
|
r#"
|
|
|
|
fn foo() {
|
|
|
|
let v: i32 = fun_name();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn $0fun_name() -> i32 {
|
|
|
|
match Some(1) {
|
|
|
|
Some(x) => x,
|
|
|
|
None => 0,
|
|
|
|
}
|
|
|
|
}"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn argument_form_expr() {
|
|
|
|
check_assist(
|
|
|
|
extract_function,
|
|
|
|
r"
|
|
|
|
fn foo() -> u32 {
|
|
|
|
let n = 2;
|
|
|
|
$0n+2$0
|
|
|
|
}",
|
|
|
|
r"
|
|
|
|
fn foo() -> u32 {
|
|
|
|
let n = 2;
|
|
|
|
fun_name(n)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn $0fun_name(n: u32) -> u32 {
|
|
|
|
n+2
|
|
|
|
}",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn argument_used_twice_form_expr() {
|
|
|
|
check_assist(
|
|
|
|
extract_function,
|
|
|
|
r"
|
|
|
|
fn foo() -> u32 {
|
|
|
|
let n = 2;
|
|
|
|
$0n+n$0
|
|
|
|
}",
|
|
|
|
r"
|
|
|
|
fn foo() -> u32 {
|
|
|
|
let n = 2;
|
|
|
|
fun_name(n)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn $0fun_name(n: u32) -> u32 {
|
|
|
|
n+n
|
|
|
|
}",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn two_arguments_form_expr() {
|
|
|
|
check_assist(
|
|
|
|
extract_function,
|
|
|
|
r"
|
|
|
|
fn foo() -> u32 {
|
|
|
|
let n = 2;
|
|
|
|
let m = 3;
|
|
|
|
$0n+n*m$0
|
|
|
|
}",
|
|
|
|
r"
|
|
|
|
fn foo() -> u32 {
|
|
|
|
let n = 2;
|
|
|
|
let m = 3;
|
|
|
|
fun_name(n, m)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn $0fun_name(n: u32, m: u32) -> u32 {
|
|
|
|
n+n*m
|
|
|
|
}",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn argument_and_locals() {
|
|
|
|
check_assist(
|
|
|
|
extract_function,
|
|
|
|
r"
|
|
|
|
fn foo() -> u32 {
|
|
|
|
let n = 2;
|
|
|
|
$0let m = 1;
|
|
|
|
n + m$0
|
|
|
|
}",
|
|
|
|
r"
|
|
|
|
fn foo() -> u32 {
|
|
|
|
let n = 2;
|
|
|
|
fun_name(n)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn $0fun_name(n: u32) -> u32 {
|
|
|
|
let m = 1;
|
|
|
|
n + m
|
|
|
|
}",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn in_comment_is_not_applicable() {
|
|
|
|
mark::check!(extract_function_in_comment_is_not_applicable);
|
|
|
|
check_assist_not_applicable(extract_function, r"fn main() { 1 + /* $0comment$0 */ 1; }");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn part_of_expr_stmt() {
|
|
|
|
check_assist(
|
|
|
|
extract_function,
|
|
|
|
"
|
|
|
|
fn foo() {
|
|
|
|
$01$0 + 1;
|
|
|
|
}",
|
|
|
|
"
|
|
|
|
fn foo() {
|
|
|
|
fun_name() + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn $0fun_name() -> i32 {
|
|
|
|
1
|
|
|
|
}",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn function_expr() {
|
|
|
|
check_assist(
|
|
|
|
extract_function,
|
|
|
|
r#"
|
|
|
|
fn foo() {
|
|
|
|
$0bar(1 + 1)$0
|
|
|
|
}"#,
|
|
|
|
r#"
|
|
|
|
fn foo() {
|
|
|
|
fun_name();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn $0fun_name() {
|
|
|
|
bar(1 + 1)
|
|
|
|
}"#,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn extract_from_nested() {
|
|
|
|
check_assist(
|
|
|
|
extract_function,
|
|
|
|
r"
|
|
|
|
fn main() {
|
|
|
|
let x = true;
|
|
|
|
let tuple = match x {
|
|
|
|
true => ($02 + 2$0, true)
|
|
|
|
_ => (0, false)
|
|
|
|
};
|
|
|
|
}",
|
|
|
|
r"
|
|
|
|
fn main() {
|
|
|
|
let x = true;
|
|
|
|
let tuple = match x {
|
|
|
|
true => (fun_name(), true)
|
|
|
|
_ => (0, false)
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
fn $0fun_name() -> i32 {
|
|
|
|
2 + 2
|
|
|
|
}",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn param_from_closure() {
|
|
|
|
check_assist(
|
|
|
|
extract_function,
|
|
|
|
r"
|
|
|
|
fn main() {
|
|
|
|
let lambda = |x: u32| $0x * 2$0;
|
|
|
|
}",
|
|
|
|
r"
|
|
|
|
fn main() {
|
|
|
|
let lambda = |x: u32| fun_name(x);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn $0fun_name(x: u32) -> u32 {
|
|
|
|
x * 2
|
|
|
|
}",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn extract_return_stmt() {
|
|
|
|
check_assist(
|
|
|
|
extract_function,
|
|
|
|
r"
|
|
|
|
fn foo() -> u32 {
|
|
|
|
$0return 2 + 2$0;
|
|
|
|
}",
|
|
|
|
r"
|
|
|
|
fn foo() -> u32 {
|
|
|
|
return fun_name();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn $0fun_name() -> u32 {
|
|
|
|
2 + 2
|
|
|
|
}",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn does_not_add_extra_whitespace() {
|
|
|
|
check_assist(
|
|
|
|
extract_function,
|
|
|
|
r"
|
|
|
|
fn foo() -> u32 {
|
|
|
|
|
|
|
|
|
|
|
|
$0return 2 + 2$0;
|
|
|
|
}",
|
|
|
|
r"
|
|
|
|
fn foo() -> u32 {
|
|
|
|
|
|
|
|
|
|
|
|
return fun_name();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn $0fun_name() -> u32 {
|
|
|
|
2 + 2
|
|
|
|
}",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn break_stmt() {
|
|
|
|
check_assist(
|
|
|
|
extract_function,
|
|
|
|
r"
|
|
|
|
fn main() {
|
|
|
|
let result = loop {
|
|
|
|
$0break 2 + 2$0;
|
|
|
|
};
|
|
|
|
}",
|
|
|
|
r"
|
|
|
|
fn main() {
|
|
|
|
let result = loop {
|
|
|
|
break fun_name();
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
fn $0fun_name() -> i32 {
|
|
|
|
2 + 2
|
|
|
|
}",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn extract_cast() {
|
|
|
|
check_assist(
|
|
|
|
extract_function,
|
|
|
|
r"
|
|
|
|
fn main() {
|
|
|
|
let v = $00f32 as u32$0;
|
|
|
|
}",
|
|
|
|
r"
|
|
|
|
fn main() {
|
|
|
|
let v = fun_name();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn $0fun_name() -> u32 {
|
|
|
|
0f32 as u32
|
|
|
|
}",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn return_not_applicable() {
|
|
|
|
check_assist_not_applicable(extract_function, r"fn foo() { $0return$0; } ");
|
|
|
|
}
|
2021-02-03 03:27:53 -06:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn method_to_freestanding() {
|
|
|
|
check_assist(
|
|
|
|
extract_function,
|
|
|
|
r"
|
|
|
|
struct S;
|
|
|
|
|
|
|
|
impl S {
|
|
|
|
fn foo(&self) -> i32 {
|
|
|
|
$01+1$0
|
|
|
|
}
|
|
|
|
}",
|
|
|
|
r"
|
|
|
|
struct S;
|
|
|
|
|
|
|
|
impl S {
|
|
|
|
fn foo(&self) -> i32 {
|
|
|
|
fun_name()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn $0fun_name() -> i32 {
|
|
|
|
1+1
|
|
|
|
}",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn method_with_reference() {
|
|
|
|
check_assist(
|
|
|
|
extract_function,
|
|
|
|
r"
|
|
|
|
struct S { f: i32 };
|
|
|
|
|
|
|
|
impl S {
|
|
|
|
fn foo(&self) -> i32 {
|
|
|
|
$01+self.f$0
|
|
|
|
}
|
|
|
|
}",
|
|
|
|
r"
|
|
|
|
struct S { f: i32 };
|
|
|
|
|
|
|
|
impl S {
|
|
|
|
fn foo(&self) -> i32 {
|
|
|
|
self.fun_name()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn $0fun_name(&self) -> i32 {
|
|
|
|
1+self.f
|
|
|
|
}
|
|
|
|
}",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn method_with_mut() {
|
|
|
|
check_assist(
|
|
|
|
extract_function,
|
|
|
|
r"
|
|
|
|
struct S { f: i32 };
|
|
|
|
|
|
|
|
impl S {
|
|
|
|
fn foo(&mut self) {
|
|
|
|
$0self.f += 1;$0
|
|
|
|
}
|
|
|
|
}",
|
|
|
|
r"
|
|
|
|
struct S { f: i32 };
|
|
|
|
|
|
|
|
impl S {
|
|
|
|
fn foo(&mut self) {
|
|
|
|
self.fun_name();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn $0fun_name(&mut self) {
|
|
|
|
self.f += 1;
|
|
|
|
}
|
|
|
|
}",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-02-03 08:46:57 -06:00
|
|
|
// it is unclear if this is wanted behaviour
|
|
|
|
// and how this behavour can be implemented
|
|
|
|
#[ignore]
|
2021-02-03 03:27:53 -06:00
|
|
|
#[test]
|
|
|
|
fn method_with_mut_downgrade_to_shared() {
|
|
|
|
check_assist(
|
|
|
|
extract_function,
|
|
|
|
r"
|
|
|
|
struct S { f: i32 };
|
|
|
|
|
|
|
|
impl S {
|
|
|
|
fn foo(&mut self) -> i32 {
|
|
|
|
$01+self.f$0
|
|
|
|
}
|
|
|
|
}",
|
|
|
|
r"
|
|
|
|
struct S { f: i32 };
|
|
|
|
|
|
|
|
impl S {
|
|
|
|
fn foo(&mut self) -> i32 {
|
|
|
|
self.fun_name()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn $0fun_name(&self) -> i32 {
|
|
|
|
1+self.f
|
|
|
|
}
|
2021-02-03 11:31:12 -06:00
|
|
|
}",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn variable_defined_inside_and_used_after_no_ret() {
|
|
|
|
check_assist(
|
|
|
|
extract_function,
|
|
|
|
r"
|
|
|
|
fn foo() {
|
|
|
|
let n = 1;
|
|
|
|
$0let k = n * n;$0
|
|
|
|
let m = k + 1;
|
|
|
|
}",
|
|
|
|
r"
|
|
|
|
fn foo() {
|
|
|
|
let n = 1;
|
|
|
|
let k = fun_name(n);
|
|
|
|
let m = k + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn $0fun_name(n: i32) -> i32 {
|
|
|
|
let k = n * n;
|
|
|
|
k
|
|
|
|
}",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn two_variables_defined_inside_and_used_after_no_ret() {
|
|
|
|
check_assist(
|
|
|
|
extract_function,
|
|
|
|
r"
|
|
|
|
fn foo() {
|
|
|
|
let n = 1;
|
|
|
|
$0let k = n * n;
|
|
|
|
let m = k + 2;$0
|
|
|
|
let h = k + m;
|
|
|
|
}",
|
|
|
|
r"
|
|
|
|
fn foo() {
|
|
|
|
let n = 1;
|
|
|
|
let (k, m) = fun_name(n);
|
|
|
|
let h = k + m;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn $0fun_name(n: i32) -> (i32, i32) {
|
|
|
|
let k = n * n;
|
|
|
|
let m = k + 2;
|
|
|
|
(k, m)
|
2021-02-03 03:27:53 -06:00
|
|
|
}",
|
|
|
|
);
|
|
|
|
}
|
2021-02-03 01:57:11 -06:00
|
|
|
}
|