Fix style

This commit is contained in:
bellau 2022-02-14 07:41:50 +01:00
parent dc68b89469
commit 06452cd102
2 changed files with 5 additions and 9 deletions

View file

@ -72,14 +72,10 @@ pub(super) fn atom_expr(p: &mut Parser, r: Restrictions) -> Option<(CompletedMar
T!['('] => tuple_expr(p),
T!['['] => array_expr(p),
T![|] => closure_expr(p),
T![move] if la == T![|] => closure_expr(p),
T![async] if la == T![|] || (la == T![move] && p.nth(2) == T![|]) => closure_expr(p),
T![static]
if la == T![|]
|| (la == T![move] && p.nth(2) == T![|])
|| (la == T![async] && p.nth(2) == T![|])
|| (la == T![async] && p.nth(2) == T![move] && p.nth(3) == T![|]) =>
{
T![static] | T![async] | T![move] if la == T![|] => closure_expr(p),
T![static] | T![async] if la == T![move] && p.nth(2) == T![|] => closure_expr(p),
T![static] if la == T![async] && p.nth(2) == T![|] => closure_expr(p),
T![static] if la == T![async] && p.nth(2) == T![move] && p.nth(3) == T![|] => {
closure_expr(p)
}
T![if] => if_expr(p),