Apply rustfmt changes

This commit is contained in:
ivan770 2020-12-09 08:22:13 +00:00 committed by GitHub
parent 86c183716c
commit 35006eba79

View file

@ -334,11 +334,12 @@ impl<'a, 'b> ExprValidator<'a, 'b> {
None => return, None => return,
}; };
let possible_tail_ty = if let Some(possible_tail_ty) = self.infer.type_of_expr.get(possible_tail_id) { let possible_tail_ty =
possible_tail_ty if let Some(possible_tail_ty) = self.infer.type_of_expr.get(possible_tail_id) {
} else { possible_tail_ty
return; } else {
}; return;
};
if mismatch.actual != Ty::unit() || mismatch.expected != *possible_tail_ty { if mismatch.actual != Ty::unit() || mismatch.expected != *possible_tail_ty {
return; return;
@ -346,10 +347,8 @@ impl<'a, 'b> ExprValidator<'a, 'b> {
let (_, source_map) = db.body_with_source_map(self.owner.into()); let (_, source_map) = db.body_with_source_map(self.owner.into());
if let Ok(source_ptr) = source_map.expr_syntax(possible_tail_id) { if let Ok(source_ptr) = source_map.expr_syntax(possible_tail_id) {
self.sink.push(RemoveThisSemicolon { self.sink
file: source_ptr.file_id, .push(RemoveThisSemicolon { file: source_ptr.file_id, expr: source_ptr.value });
expr: source_ptr.value,
});
} }
} }
} }