From d739731830d5ad289f1bb779ed58cc1ea3cb5734 Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Mon, 15 Jun 2020 10:59:05 +0200 Subject: Allow attributes on expressions https://github.com/rust-lang/rust/pull/69201/ --- crates/ra_parser/src/grammar/expressions.rs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'crates') diff --git a/crates/ra_parser/src/grammar/expressions.rs b/crates/ra_parser/src/grammar/expressions.rs index d6e8df32a..6e72eea66 100644 --- a/crates/ra_parser/src/grammar/expressions.rs +++ b/crates/ra_parser/src/grammar/expressions.rs @@ -50,10 +50,8 @@ fn expr_no_struct(p: &mut Parser) { } fn is_expr_stmt_attr_allowed(kind: SyntaxKind) -> bool { - match kind { - BIN_EXPR | RANGE_EXPR | IF_EXPR => false, - _ => true, - } + let forbid = matches!(kind, BIN_EXPR | RANGE_EXPR); + !forbid } pub(super) fn stmt(p: &mut Parser, with_semi: StmtWithSemi) { -- cgit v1.2.3