Contentious lint to contract into single if let

This commit is contained in:
sholderbach 2024-07-25 21:44:28 +02:00
parent d2bf82d22b
commit 6c42f2c475

View File

@ -308,8 +308,7 @@ pub fn parse_for(working_set: &mut StateWorkingSet, lite_command: &LiteCommand)
}
// Let's get our block and make sure it has the right signature
if let Some(arg) = call.positional_nth(2) {
match arg {
if let Some(
Expression {
expr: Expr::Block(block_id),
..
@ -317,13 +316,14 @@ pub fn parse_for(working_set: &mut StateWorkingSet, lite_command: &LiteCommand)
| Expression {
expr: Expr::RowCondition(block_id),
..
} => {
},
) = call.positional_nth(2)
{
{
let block = working_set.get_block_mut(*block_id);
block.signature = Box::new(sig);
}
_ => {}
}
}
(call, call_span)