diff options
author | Lucas Spits <[email protected]> | 2019-03-11 19:41:48 +0000 |
---|---|---|
committer | Lucas Spits <[email protected]> | 2019-03-11 19:41:48 +0000 |
commit | de4ad44282785d0928824eda5f062c2367a870f7 (patch) | |
tree | b89261aa34f9216d61e8f3751a009735ec139323 /crates/ra_parser/src/grammar/expressions | |
parent | 7185c594fe1b6c282c432c1fbb57e8e6e23421ed (diff) | |
parent | f96df105ea6d27f295cc1c0a6cdb6c50979f67ed (diff) |
Merge branch 'master' of https://github.com/LDSpits/rust-analyzer into feature/workspace-directory
Diffstat (limited to 'crates/ra_parser/src/grammar/expressions')
-rw-r--r-- | crates/ra_parser/src/grammar/expressions/atom.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/crates/ra_parser/src/grammar/expressions/atom.rs b/crates/ra_parser/src/grammar/expressions/atom.rs index 9f282c74d..53bb26c5f 100644 --- a/crates/ra_parser/src/grammar/expressions/atom.rs +++ b/crates/ra_parser/src/grammar/expressions/atom.rs | |||
@@ -93,6 +93,11 @@ pub(super) fn atom_expr(p: &mut Parser, r: Restrictions) -> Option<(CompletedMar | |||
93 | } | 93 | } |
94 | } | 94 | } |
95 | 95 | ||
96 | ASYNC_KW if la == L_CURLY => { | ||
97 | let m = p.start(); | ||
98 | p.bump(); | ||
99 | block_expr(p, Some(m)) | ||
100 | } | ||
96 | MATCH_KW => match_expr(p), | 101 | MATCH_KW => match_expr(p), |
97 | UNSAFE_KW if la == L_CURLY => { | 102 | UNSAFE_KW if la == L_CURLY => { |
98 | let m = p.start(); | 103 | let m = p.start(); |