mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-26 04:53:34 +00:00
Merge #9614
9614: Parse input expressions for dbg! invocations in remove_dbg r=Veykril a=Veykril Instead of inspecting the input tokentree manually, parse the input as `,` delimited expressions instead and act on that. This simplifies the assist quite a bit. Fixes #8455 Co-authored-by: Lukas Wirth <lukastw97@gmail.com>
This commit is contained in:
commit
a2f83c956e
1 changed files with 127 additions and 390 deletions
|
@ -1,6 +1,7 @@
|
||||||
|
use itertools::Itertools;
|
||||||
use syntax::{
|
use syntax::{
|
||||||
ast::{self, AstNode, AstToken},
|
ast::{self, AstNode, AstToken},
|
||||||
match_ast, SyntaxElement, TextRange, TextSize, T,
|
match_ast, NodeOrToken, SyntaxElement, TextSize, T,
|
||||||
};
|
};
|
||||||
|
|
||||||
use crate::{AssistContext, AssistId, AssistKind, Assists};
|
use crate::{AssistContext, AssistId, AssistKind, Assists};
|
||||||
|
@ -22,440 +23,170 @@ use crate::{AssistContext, AssistId, AssistKind, Assists};
|
||||||
// ```
|
// ```
|
||||||
pub(crate) fn remove_dbg(acc: &mut Assists, ctx: &AssistContext) -> Option<()> {
|
pub(crate) fn remove_dbg(acc: &mut Assists, ctx: &AssistContext) -> Option<()> {
|
||||||
let macro_call = ctx.find_node_at_offset::<ast::MacroCall>()?;
|
let macro_call = ctx.find_node_at_offset::<ast::MacroCall>()?;
|
||||||
let new_contents = adjusted_macro_contents(¯o_call)?;
|
let tt = macro_call.token_tree()?;
|
||||||
|
let r_delim = NodeOrToken::Token(tt.right_delimiter_token()?);
|
||||||
let parent = macro_call.syntax().parent();
|
if macro_call.path()?.segment()?.name_ref()?.text() != "dbg"
|
||||||
|
|| macro_call.excl_token().is_none()
|
||||||
let macro_text_range = if let Some(it) = parent.as_ref() {
|
|
||||||
if new_contents.is_empty() {
|
|
||||||
match_ast! {
|
|
||||||
match it {
|
|
||||||
ast::BlockExpr(_it) => {
|
|
||||||
macro_call.syntax()
|
|
||||||
.prev_sibling_or_token()
|
|
||||||
.and_then(whitespace_start)
|
|
||||||
.map(|start| TextRange::new(start, macro_call.syntax().text_range().end()))
|
|
||||||
.unwrap_or_else(|| macro_call.syntax().text_range())
|
|
||||||
},
|
|
||||||
ast::ExprStmt(it) => {
|
|
||||||
let start = it
|
|
||||||
.syntax()
|
|
||||||
.prev_sibling_or_token()
|
|
||||||
.and_then(whitespace_start)
|
|
||||||
.unwrap_or_else(|| it.syntax().text_range().start());
|
|
||||||
let end = it.syntax().text_range().end();
|
|
||||||
|
|
||||||
TextRange::new(start, end)
|
|
||||||
},
|
|
||||||
_ => macro_call.syntax().text_range()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
macro_call.syntax().text_range()
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
macro_call.syntax().text_range()
|
|
||||||
};
|
|
||||||
|
|
||||||
let macro_end = if macro_call.semicolon_token().is_some() {
|
|
||||||
macro_text_range.end() - TextSize::of(';')
|
|
||||||
} else {
|
|
||||||
macro_text_range.end()
|
|
||||||
};
|
|
||||||
|
|
||||||
acc.add(
|
|
||||||
AssistId("remove_dbg", AssistKind::Refactor),
|
|
||||||
"Remove dbg!()",
|
|
||||||
macro_text_range,
|
|
||||||
|builder| {
|
|
||||||
builder.replace(
|
|
||||||
TextRange::new(macro_text_range.start(), macro_end),
|
|
||||||
if new_contents.is_empty() && parent.and_then(ast::LetStmt::cast).is_some() {
|
|
||||||
ast::make::expr_unit().to_string()
|
|
||||||
} else {
|
|
||||||
new_contents
|
|
||||||
},
|
|
||||||
);
|
|
||||||
},
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
fn whitespace_start(it: SyntaxElement) -> Option<TextSize> {
|
|
||||||
Some(it.into_token().and_then(ast::Whitespace::cast)?.syntax().text_range().start())
|
|
||||||
}
|
|
||||||
|
|
||||||
fn adjusted_macro_contents(macro_call: &ast::MacroCall) -> Option<String> {
|
|
||||||
let contents = get_valid_macrocall_contents(macro_call, "dbg")?;
|
|
||||||
let macro_text_with_brackets = macro_call.token_tree()?.syntax().text();
|
|
||||||
let macro_text_in_brackets = macro_text_with_brackets.slice(TextRange::new(
|
|
||||||
TextSize::of('('),
|
|
||||||
macro_text_with_brackets.len() - TextSize::of(')'),
|
|
||||||
));
|
|
||||||
|
|
||||||
Some(
|
|
||||||
if !is_leaf_or_control_flow_expr(macro_call)
|
|
||||||
&& needs_parentheses_around_macro_contents(contents)
|
|
||||||
{
|
{
|
||||||
format!("({})", macro_text_in_brackets)
|
|
||||||
} else {
|
|
||||||
macro_text_in_brackets.to_string()
|
|
||||||
},
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
fn is_leaf_or_control_flow_expr(macro_call: &ast::MacroCall) -> bool {
|
|
||||||
macro_call.syntax().next_sibling().is_none()
|
|
||||||
|| match macro_call.syntax().parent() {
|
|
||||||
Some(parent) => match_ast! {
|
|
||||||
match parent {
|
|
||||||
ast::Condition(_it) => true,
|
|
||||||
ast::MatchExpr(_it) => true,
|
|
||||||
_ => false,
|
|
||||||
}
|
|
||||||
},
|
|
||||||
None => false,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Verifies that the given macro_call actually matches the given name
|
|
||||||
/// and contains proper ending tokens, then returns the contents between the ending tokens
|
|
||||||
fn get_valid_macrocall_contents(
|
|
||||||
macro_call: &ast::MacroCall,
|
|
||||||
macro_name: &str,
|
|
||||||
) -> Option<Vec<SyntaxElement>> {
|
|
||||||
let path = macro_call.path()?;
|
|
||||||
let name_ref = path.segment()?.name_ref()?;
|
|
||||||
|
|
||||||
// Make sure it is actually a dbg-macro call, dbg followed by !
|
|
||||||
let excl = path.syntax().next_sibling_or_token()?;
|
|
||||||
if name_ref.text() != macro_name || excl.kind() != T![!] {
|
|
||||||
return None;
|
return None;
|
||||||
}
|
}
|
||||||
|
|
||||||
let mut children_with_tokens = macro_call.token_tree()?.syntax().children_with_tokens();
|
let mac_input = tt.syntax().children_with_tokens().skip(1).take_while(|it| *it != r_delim);
|
||||||
let first_child = children_with_tokens.next()?;
|
let input_expressions = mac_input.into_iter().group_by(|tok| tok.kind() == T![,]);
|
||||||
let mut contents_between_brackets = children_with_tokens.collect::<Vec<_>>();
|
let input_expressions = input_expressions
|
||||||
let last_child = contents_between_brackets.pop()?;
|
.into_iter()
|
||||||
|
.filter_map(|(is_sep, group)| (!is_sep).then(|| group))
|
||||||
|
.map(|mut tokens| ast::Expr::parse(&tokens.join("")))
|
||||||
|
.collect::<Result<Vec<ast::Expr>, _>>()
|
||||||
|
.ok()?;
|
||||||
|
|
||||||
match (first_child.kind(), last_child.kind()) {
|
let parent = macro_call.syntax().parent()?;
|
||||||
(T!['('], T![')']) | (T!['['], T![']']) | (T!['{'], T!['}']) => {
|
let (range, text) = match &*input_expressions {
|
||||||
Some(contents_between_brackets)
|
// dbg!()
|
||||||
|
[] => {
|
||||||
|
match_ast! {
|
||||||
|
match parent {
|
||||||
|
ast::BlockExpr(__) => {
|
||||||
|
let range = macro_call.syntax().text_range();
|
||||||
|
let range = match whitespace_start(macro_call.syntax().prev_sibling_or_token()) {
|
||||||
|
Some(start) => range.cover_offset(start),
|
||||||
|
None => range,
|
||||||
|
};
|
||||||
|
(range, String::new())
|
||||||
|
},
|
||||||
|
ast::ExprStmt(it) => {
|
||||||
|
let range = it.syntax().text_range();
|
||||||
|
let range = match whitespace_start(it.syntax().prev_sibling_or_token()) {
|
||||||
|
Some(start) => range.cover_offset(start),
|
||||||
|
None => range,
|
||||||
|
};
|
||||||
|
(range, String::new())
|
||||||
|
},
|
||||||
|
_ => (macro_call.syntax().text_range(), "()".to_owned())
|
||||||
}
|
}
|
||||||
_ => None,
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// dbg!(expr0)
|
||||||
|
[expr] => {
|
||||||
|
let wrap = match ast::Expr::cast(parent) {
|
||||||
|
Some(parent) => match (expr, parent) {
|
||||||
|
(ast::Expr::CastExpr(_), ast::Expr::CastExpr(_)) => false,
|
||||||
|
(
|
||||||
|
ast::Expr::BoxExpr(_) | ast::Expr::PrefixExpr(_) | ast::Expr::RefExpr(_),
|
||||||
|
ast::Expr::AwaitExpr(_)
|
||||||
|
| ast::Expr::CallExpr(_)
|
||||||
|
| ast::Expr::CastExpr(_)
|
||||||
|
| ast::Expr::FieldExpr(_)
|
||||||
|
| ast::Expr::IndexExpr(_)
|
||||||
|
| ast::Expr::MethodCallExpr(_)
|
||||||
|
| ast::Expr::RangeExpr(_)
|
||||||
|
| ast::Expr::TryExpr(_),
|
||||||
|
) => true,
|
||||||
|
(
|
||||||
|
ast::Expr::BinExpr(_) | ast::Expr::CastExpr(_) | ast::Expr::RangeExpr(_),
|
||||||
|
ast::Expr::AwaitExpr(_)
|
||||||
|
| ast::Expr::BinExpr(_)
|
||||||
|
| ast::Expr::CallExpr(_)
|
||||||
|
| ast::Expr::CastExpr(_)
|
||||||
|
| ast::Expr::FieldExpr(_)
|
||||||
|
| ast::Expr::IndexExpr(_)
|
||||||
|
| ast::Expr::MethodCallExpr(_)
|
||||||
|
| ast::Expr::PrefixExpr(_)
|
||||||
|
| ast::Expr::RangeExpr(_)
|
||||||
|
| ast::Expr::RefExpr(_)
|
||||||
|
| ast::Expr::TryExpr(_),
|
||||||
|
) => true,
|
||||||
|
_ => false,
|
||||||
|
},
|
||||||
|
None => false,
|
||||||
|
};
|
||||||
|
(
|
||||||
|
macro_call.syntax().text_range(),
|
||||||
|
if wrap { format!("({})", expr) } else { expr.to_string() },
|
||||||
|
)
|
||||||
|
}
|
||||||
|
// dbg!(expr0, expr1, ...)
|
||||||
|
exprs => (macro_call.syntax().text_range(), format!("({})", exprs.iter().format(", "))),
|
||||||
|
};
|
||||||
|
|
||||||
|
acc.add(AssistId("remove_dbg", AssistKind::Refactor), "Remove dbg!()", range, |builder| {
|
||||||
|
builder.replace(range, text);
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
fn needs_parentheses_around_macro_contents(macro_contents: Vec<SyntaxElement>) -> bool {
|
fn whitespace_start(it: Option<SyntaxElement>) -> Option<TextSize> {
|
||||||
if macro_contents.len() < 2 {
|
Some(it?.into_token().and_then(ast::Whitespace::cast)?.syntax().text_range().start())
|
||||||
return false;
|
|
||||||
}
|
|
||||||
let mut macro_contents = macro_contents.into_iter().peekable();
|
|
||||||
let mut unpaired_brackets_in_contents = Vec::new();
|
|
||||||
while let Some(element) = macro_contents.next() {
|
|
||||||
match element.kind() {
|
|
||||||
T!['('] | T!['['] | T!['{'] => unpaired_brackets_in_contents.push(element),
|
|
||||||
T![')'] => {
|
|
||||||
if !matches!(unpaired_brackets_in_contents.pop(), Some(correct_bracket) if correct_bracket.kind() == T!['('])
|
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
T![']'] => {
|
|
||||||
if !matches!(unpaired_brackets_in_contents.pop(), Some(correct_bracket) if correct_bracket.kind() == T!['['])
|
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
T!['}'] => {
|
|
||||||
if !matches!(unpaired_brackets_in_contents.pop(), Some(correct_bracket) if correct_bracket.kind() == T!['{'])
|
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
symbol_kind => {
|
|
||||||
let symbol_not_in_bracket = unpaired_brackets_in_contents.is_empty();
|
|
||||||
if symbol_not_in_bracket
|
|
||||||
&& symbol_kind != T![:] // paths
|
|
||||||
&& (symbol_kind != T![.] // field/method access
|
|
||||||
|| macro_contents // range expressions consist of two SyntaxKind::Dot in macro invocations
|
|
||||||
.peek()
|
|
||||||
.map(|element| element.kind() == T![.])
|
|
||||||
.unwrap_or(false))
|
|
||||||
&& symbol_kind != T![?] // try operator
|
|
||||||
&& (symbol_kind.is_punct() || symbol_kind == T![as])
|
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
!unpaired_brackets_in_contents.is_empty()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod tests {
|
mod tests {
|
||||||
use crate::tests::{check_assist, check_assist_not_applicable, check_assist_target};
|
use crate::tests::{check_assist, check_assist_not_applicable};
|
||||||
|
|
||||||
use super::*;
|
use super::*;
|
||||||
|
|
||||||
#[test]
|
fn check(ra_fixture_before: &str, ra_fixture_after: &str) {
|
||||||
fn test_remove_dbg() {
|
|
||||||
check_assist(remove_dbg, "$0dbg!(1 + 1)", "1 + 1");
|
|
||||||
|
|
||||||
check_assist(remove_dbg, "dbg!$0((1 + 1))", "(1 + 1)");
|
|
||||||
|
|
||||||
check_assist(remove_dbg, "dbg!(1 $0+ 1)", "1 + 1");
|
|
||||||
|
|
||||||
check_assist(remove_dbg, "let _ = $0dbg!(1 + 1)", "let _ = 1 + 1");
|
|
||||||
|
|
||||||
check_assist(
|
check_assist(
|
||||||
remove_dbg,
|
remove_dbg,
|
||||||
"
|
&format!("fn main() {{\n{}\n}}", ra_fixture_before),
|
||||||
fn foo(n: usize) {
|
&format!("fn main() {{\n{}\n}}", ra_fixture_after),
|
||||||
if let Some(_) = dbg!(n.$0checked_sub(4)) {
|
|
||||||
// ...
|
|
||||||
}
|
|
||||||
}
|
|
||||||
",
|
|
||||||
"
|
|
||||||
fn foo(n: usize) {
|
|
||||||
if let Some(_) = n.checked_sub(4) {
|
|
||||||
// ...
|
|
||||||
}
|
|
||||||
}
|
|
||||||
",
|
|
||||||
);
|
);
|
||||||
|
|
||||||
check_assist(remove_dbg, "$0dbg!(Foo::foo_test()).bar()", "Foo::foo_test().bar()");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_remove_dbg_with_brackets_and_braces() {
|
fn test_remove_dbg() {
|
||||||
check_assist(remove_dbg, "dbg![$01 + 1]", "1 + 1");
|
check("$0dbg!(1 + 1)", "1 + 1");
|
||||||
check_assist(remove_dbg, "dbg!{$01 + 1}", "1 + 1");
|
check("dbg!$0(1 + 1)", "1 + 1");
|
||||||
|
check("dbg!(1 $0+ 1)", "1 + 1");
|
||||||
|
check("dbg![$01 + 1]", "1 + 1");
|
||||||
|
check("dbg!{$01 + 1}", "1 + 1");
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_remove_dbg_not_applicable() {
|
fn test_remove_dbg_not_applicable() {
|
||||||
check_assist_not_applicable(remove_dbg, "$0vec![1, 2, 3]");
|
check_assist_not_applicable(remove_dbg, "fn main() {$0vec![1, 2, 3]}");
|
||||||
check_assist_not_applicable(remove_dbg, "$0dbg(5, 6, 7)");
|
check_assist_not_applicable(remove_dbg, "fn main() {$0dbg(5, 6, 7)}");
|
||||||
check_assist_not_applicable(remove_dbg, "$0dbg!(5, 6, 7");
|
check_assist_not_applicable(remove_dbg, "fn main() {$0dbg!(5, 6, 7}");
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_remove_dbg_target() {
|
fn test_remove_dbg_keep_semicolon_in_let() {
|
||||||
check_assist_target(
|
|
||||||
remove_dbg,
|
|
||||||
"
|
|
||||||
fn foo(n: usize) {
|
|
||||||
if let Some(_) = dbg!(n.$0checked_sub(4)) {
|
|
||||||
// ...
|
|
||||||
}
|
|
||||||
}
|
|
||||||
",
|
|
||||||
"dbg!(n.checked_sub(4))",
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn test_remove_dbg_keep_semicolon() {
|
|
||||||
// https://github.com/rust-analyzer/rust-analyzer/issues/5129#issuecomment-651399779
|
// https://github.com/rust-analyzer/rust-analyzer/issues/5129#issuecomment-651399779
|
||||||
// not quite though
|
check(
|
||||||
// adding a comment at the end of the line makes
|
|
||||||
// the ast::MacroCall to include the semicolon at the end
|
|
||||||
check_assist(
|
|
||||||
remove_dbg,
|
|
||||||
r#"let res = $0dbg!(1 * 20); // needless comment"#,
|
r#"let res = $0dbg!(1 * 20); // needless comment"#,
|
||||||
r#"let res = 1 * 20; // needless comment"#,
|
r#"let res = 1 * 20; // needless comment"#,
|
||||||
);
|
);
|
||||||
}
|
check(r#"let res = $0dbg!(); // needless comment"#, r#"let res = (); // needless comment"#);
|
||||||
|
check(
|
||||||
#[test]
|
r#"let res = $0dbg!(1, 2); // needless comment"#,
|
||||||
fn remove_dbg_from_non_leaf_simple_expression() {
|
r#"let res = (1, 2); // needless comment"#,
|
||||||
check_assist(
|
|
||||||
remove_dbg,
|
|
||||||
"
|
|
||||||
fn main() {
|
|
||||||
let mut a = 1;
|
|
||||||
while dbg!$0(a) < 10000 {
|
|
||||||
a += 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
",
|
|
||||||
"
|
|
||||||
fn main() {
|
|
||||||
let mut a = 1;
|
|
||||||
while a < 10000 {
|
|
||||||
a += 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
",
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_remove_dbg_keep_expression() {
|
fn test_remove_dbg_cast_cast() {
|
||||||
check_assist(
|
check(r#"let res = $0dbg!(x as u32) as u32;"#, r#"let res = x as u32 as u32;"#);
|
||||||
remove_dbg,
|
|
||||||
r#"let res = $0dbg!(a + b).foo();"#,
|
|
||||||
r#"let res = (a + b).foo();"#,
|
|
||||||
);
|
|
||||||
|
|
||||||
check_assist(remove_dbg, r#"let res = $0dbg!(2 + 2) * 5"#, r#"let res = (2 + 2) * 5"#);
|
|
||||||
check_assist(remove_dbg, r#"let res = $0dbg![2 + 2] * 5"#, r#"let res = (2 + 2) * 5"#);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_remove_dbg_method_chaining() {
|
fn test_remove_dbg_prefix() {
|
||||||
check_assist(
|
check(r#"let res = $0dbg!(&result).foo();"#, r#"let res = (&result).foo();"#);
|
||||||
remove_dbg,
|
check(r#"let res = &$0dbg!(&result);"#, r#"let res = &&result;"#);
|
||||||
r#"let res = $0dbg!(foo().bar()).baz();"#,
|
check(r#"let res = $0dbg!(!result) && true;"#, r#"let res = !result && true;"#);
|
||||||
r#"let res = foo().bar().baz();"#,
|
|
||||||
);
|
|
||||||
check_assist(
|
|
||||||
remove_dbg,
|
|
||||||
r#"let res = $0dbg!(foo.bar()).baz();"#,
|
|
||||||
r#"let res = foo.bar().baz();"#,
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_remove_dbg_field_chaining() {
|
fn test_remove_dbg_post_expr() {
|
||||||
check_assist(remove_dbg, r#"let res = $0dbg!(foo.bar).baz;"#, r#"let res = foo.bar.baz;"#);
|
check(r#"let res = $0dbg!(fut.await).foo();"#, r#"let res = fut.await.foo();"#);
|
||||||
}
|
check(r#"let res = $0dbg!(result?).foo();"#, r#"let res = result?.foo();"#);
|
||||||
|
check(r#"let res = $0dbg!(foo as u32).foo();"#, r#"let res = (foo as u32).foo();"#);
|
||||||
#[test]
|
check(r#"let res = $0dbg!(array[3]).foo();"#, r#"let res = array[3].foo();"#);
|
||||||
fn test_remove_dbg_from_inside_fn() {
|
check(r#"let res = $0dbg!(tuple.3).foo();"#, r#"let res = tuple.3.foo();"#);
|
||||||
check_assist_target(
|
|
||||||
remove_dbg,
|
|
||||||
r#"
|
|
||||||
fn square(x: u32) -> u32 {
|
|
||||||
x * x
|
|
||||||
}
|
|
||||||
|
|
||||||
fn main() {
|
|
||||||
let x = square(dbg$0!(5 + 10));
|
|
||||||
println!("{}", x);
|
|
||||||
}"#,
|
|
||||||
"dbg!(5 + 10)",
|
|
||||||
);
|
|
||||||
|
|
||||||
check_assist(
|
|
||||||
remove_dbg,
|
|
||||||
r#"
|
|
||||||
fn square(x: u32) -> u32 {
|
|
||||||
x * x
|
|
||||||
}
|
|
||||||
|
|
||||||
fn main() {
|
|
||||||
let x = square(dbg$0!(5 + 10));
|
|
||||||
println!("{}", x);
|
|
||||||
}"#,
|
|
||||||
r#"
|
|
||||||
fn square(x: u32) -> u32 {
|
|
||||||
x * x
|
|
||||||
}
|
|
||||||
|
|
||||||
fn main() {
|
|
||||||
let x = square(5 + 10);
|
|
||||||
println!("{}", x);
|
|
||||||
}"#,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn test_remove_dbg_try_expr() {
|
|
||||||
check_assist(
|
|
||||||
remove_dbg,
|
|
||||||
r#"let res = $0dbg!(result?).foo();"#,
|
|
||||||
r#"let res = result?.foo();"#,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn test_remove_dbg_await_expr() {
|
|
||||||
check_assist(
|
|
||||||
remove_dbg,
|
|
||||||
r#"let res = $0dbg!(fut.await).foo();"#,
|
|
||||||
r#"let res = fut.await.foo();"#,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn test_remove_dbg_as_cast() {
|
|
||||||
check_assist(
|
|
||||||
remove_dbg,
|
|
||||||
r#"let res = $0dbg!(3 as usize).foo();"#,
|
|
||||||
r#"let res = (3 as usize).foo();"#,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn test_remove_dbg_index_expr() {
|
|
||||||
check_assist(
|
|
||||||
remove_dbg,
|
|
||||||
r#"let res = $0dbg!(array[3]).foo();"#,
|
|
||||||
r#"let res = array[3].foo();"#,
|
|
||||||
);
|
|
||||||
check_assist(
|
|
||||||
remove_dbg,
|
|
||||||
r#"let res = $0dbg!(tuple.3).foo();"#,
|
|
||||||
r#"let res = tuple.3.foo();"#,
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_remove_dbg_range_expr() {
|
fn test_remove_dbg_range_expr() {
|
||||||
check_assist(
|
check(r#"let res = $0dbg!(foo..bar).foo();"#, r#"let res = (foo..bar).foo();"#);
|
||||||
remove_dbg,
|
check(r#"let res = $0dbg!(foo..=bar).foo();"#, r#"let res = (foo..=bar).foo();"#);
|
||||||
r#"let res = $0dbg!(foo..bar).foo();"#,
|
|
||||||
r#"let res = (foo..bar).foo();"#,
|
|
||||||
);
|
|
||||||
check_assist(
|
|
||||||
remove_dbg,
|
|
||||||
r#"let res = $0dbg!(foo..=bar).foo();"#,
|
|
||||||
r#"let res = (foo..=bar).foo();"#,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn test_remove_dbg_followed_by_block() {
|
|
||||||
check_assist(
|
|
||||||
remove_dbg,
|
|
||||||
r#"fn foo() {
|
|
||||||
if $0dbg!(x || y) {}
|
|
||||||
}"#,
|
|
||||||
r#"fn foo() {
|
|
||||||
if x || y {}
|
|
||||||
}"#,
|
|
||||||
);
|
|
||||||
check_assist(
|
|
||||||
remove_dbg,
|
|
||||||
r#"fn foo() {
|
|
||||||
while let foo = $0dbg!(&x) {}
|
|
||||||
}"#,
|
|
||||||
r#"fn foo() {
|
|
||||||
while let foo = &x {}
|
|
||||||
}"#,
|
|
||||||
);
|
|
||||||
check_assist(
|
|
||||||
remove_dbg,
|
|
||||||
r#"fn foo() {
|
|
||||||
if let foo = $0dbg!(&x) {}
|
|
||||||
}"#,
|
|
||||||
r#"fn foo() {
|
|
||||||
if let foo = &x {}
|
|
||||||
}"#,
|
|
||||||
);
|
|
||||||
check_assist(
|
|
||||||
remove_dbg,
|
|
||||||
r#"fn foo() {
|
|
||||||
match $0dbg!(&x) {}
|
|
||||||
}"#,
|
|
||||||
r#"fn foo() {
|
|
||||||
match &x {}
|
|
||||||
}"#,
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
|
@ -501,4 +232,10 @@ fn foo() {
|
||||||
}"#,
|
}"#,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_remove_multi_dbg() {
|
||||||
|
check(r#"$0dbg!(0, 1)"#, r#"(0, 1)"#);
|
||||||
|
check(r#"$0dbg!(0, (1, 2))"#, r#"(0, (1, 2))"#);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue