From abe96a4765785382e366f4f01d06e86fa76bbca3 Mon Sep 17 00:00:00 2001 From: memoryruins Date: Thu, 28 Mar 2019 18:38:59 -0400 Subject: recognize async move --- crates/ra_parser/src/grammar/expressions/atom.rs | 4 ++-- crates/ra_parser/src/grammar/items.rs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'crates/ra_parser/src') diff --git a/crates/ra_parser/src/grammar/expressions/atom.rs b/crates/ra_parser/src/grammar/expressions/atom.rs index a23977bfb..8653d4055 100644 --- a/crates/ra_parser/src/grammar/expressions/atom.rs +++ b/crates/ra_parser/src/grammar/expressions/atom.rs @@ -92,10 +92,10 @@ pub(super) fn atom_expr(p: &mut Parser, r: Restrictions) -> Option<(CompletedMar } } } - - ASYNC_KW if la == L_CURLY => { + ASYNC_KW if la == L_CURLY || la == MOVE_KW => { let m = p.start(); p.bump(); + p.eat(MOVE_KW); block_expr(p, Some(m)) } MATCH_KW => match_expr(p), diff --git a/crates/ra_parser/src/grammar/items.rs b/crates/ra_parser/src/grammar/items.rs index c24e6d1e0..8d8828652 100644 --- a/crates/ra_parser/src/grammar/items.rs +++ b/crates/ra_parser/src/grammar/items.rs @@ -82,7 +82,7 @@ pub(super) fn maybe_item(p: &mut Parser, m: Marker, flavor: ItemFlavor) -> Resul // test_err async_without_semicolon // fn foo() { let _ = async {} } has_mods |= p.eat(CONST_KW); - if p.at(ASYNC_KW) && p.nth(1) != L_CURLY { + if p.at(ASYNC_KW) && p.nth(1) != L_CURLY && p.nth(1) != MOVE_KW { p.eat(ASYNC_KW); has_mods = true; } -- cgit v1.2.3