From 41cc365af92ff3ed5c165fb575a74428e2608a6e Mon Sep 17 00:00:00 2001 From: Aaron Keen Date: Wed, 16 Dec 2015 11:53:36 +0100 Subject: [PATCH] Corrected formatting mistakes. Changed bit manipulation to use supported - (set difference) instead of explicit '& !'. --- src/libsyntax/parse/parser.rs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/libsyntax/parse/parser.rs b/src/libsyntax/parse/parser.rs index 6cbdd9f3411..4f4a78e8760 100644 --- a/src/libsyntax/parse/parser.rs +++ b/src/libsyntax/parse/parser.rs @@ -2814,22 +2814,22 @@ impl<'a> Parser<'a> { let rhs = try!(match op.fixity() { Fixity::Right => self.with_res( - restrictions & !Restrictions::RESTRICTION_STMT_EXPR, - |this|{ + restrictions - Restrictions::RESTRICTION_STMT_EXPR, + |this| { this.parse_assoc_expr_with(op.precedence(), - LhsExpr::NotYetParsed) + LhsExpr::NotYetParsed) }), Fixity::Left => self.with_res( - restrictions & !Restrictions::RESTRICTION_STMT_EXPR, - |this|{ + restrictions - Restrictions::RESTRICTION_STMT_EXPR, + |this| { this.parse_assoc_expr_with(op.precedence() + 1, LhsExpr::NotYetParsed) }), // We currently have no non-associative operators that are not handled above by // the special cases. The code is here only for future convenience. Fixity::None => self.with_res( - restrictions & !Restrictions::RESTRICTION_STMT_EXPR, - |this|{ + restrictions - Restrictions::RESTRICTION_STMT_EXPR, + |this| { this.parse_assoc_expr_with(op.precedence() + 1, LhsExpr::NotYetParsed) }),