diff options
author | Freya Murphy <freya@freyacat.org> | 2024-02-29 18:51:14 -0500 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2024-02-29 18:51:14 -0500 |
commit | 1d0795ca96764671c752a53a7e5cdaac231e0eff (patch) | |
tree | 8986ff8fc3c722e59c7093caa8294cdd0f2e58f1 /matrix-lang | |
parent | fin prob (diff) | |
download | matrix-1d0795ca96764671c752a53a7e5cdaac231e0eff.tar.gz matrix-1d0795ca96764671c752a53a7e5cdaac231e0eff.tar.bz2 matrix-1d0795ca96764671c752a53a7e5cdaac231e0eff.zip |
readme update
Diffstat (limited to 'matrix-lang')
-rw-r--r-- | matrix-lang/src/parse.rs | 7 |
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> { |