summaryrefslogtreecommitdiff
path: root/matrix-lang/src/parse.rs
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2024-02-29 18:51:14 -0500
committerFreya Murphy <freya@freyacat.org>2024-02-29 18:51:14 -0500
commit1d0795ca96764671c752a53a7e5cdaac231e0eff (patch)
tree8986ff8fc3c722e59c7093caa8294cdd0f2e58f1 /matrix-lang/src/parse.rs
parentfin prob (diff)
downloadmatrix-1d0795ca96764671c752a53a7e5cdaac231e0eff.tar.gz
matrix-1d0795ca96764671c752a53a7e5cdaac231e0eff.tar.bz2
matrix-1d0795ca96764671c752a53a7e5cdaac231e0eff.zip
readme update
Diffstat (limited to '')
-rw-r--r--matrix-lang/src/parse.rs7
1 files changed, 6 insertions, 1 deletions
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> {
+ expr_parser!(self, T::BitwiseXor, parse_expr_bit_and)
+ }
+
+
fn parse_expr_bit_or(&mut self) -> Result<Expr> {
- 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<Expr> {