Rename bitwise operators for readability (#5937)

This commit is contained in:
JT
2022-07-03 10:05:02 +12:00
committed by GitHub
parent b82dccf0bd
commit a48616697a
5 changed files with 29 additions and 29 deletions

View File

@ -4106,10 +4106,10 @@ pub fn parse_operator(
b"in" => Operator::In,
b"not-in" => Operator::NotIn,
b"mod" => Operator::Modulo,
b"bor" => Operator::BitOr,
b"band" => Operator::BitAnd,
b"bshl" => Operator::ShiftLeft,
b"bshr" => Operator::ShiftRight,
b"bit-or" => Operator::BitOr,
b"bit-and" => Operator::BitAnd,
b"bit-shl" => Operator::ShiftLeft,
b"bit-shr" => Operator::ShiftRight,
b"starts-with" => Operator::StartsWith,
b"ends-with" => Operator::EndsWith,
b"&&" | b"and" => Operator::And,