From 1d0795ca96764671c752a53a7e5cdaac231e0eff Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Thu, 29 Feb 2024 18:51:14 -0500 Subject: readme update --- matrix-lang/src/parse.rs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'matrix-lang') diff --git a/matrix-lang/src/parse.rs b/matrix-lang/src/parse.rs index 3a4c5f2..c476650 100644 --- a/matrix-lang/src/parse.rs +++ b/matrix-lang/src/parse.rs @@ -571,8 +571,13 @@ impl Parser { expr_parser!(self, T::BitwiseAnd, parse_expr_shift) } + fn parse_expr_bit_xor(&mut self) -> Result { + expr_parser!(self, T::BitwiseXor, parse_expr_bit_and) + } + + fn parse_expr_bit_or(&mut self) -> Result { - expr_parser!(self, T::BitwiseOr, parse_expr_bit_and) + expr_parser!(self, T::BitwiseOr, parse_expr_bit_xor) } fn parse_expr_compare(&mut self) -> Result { -- cgit v1.2.3-freya