Return a new expression with bitwise SHIFT LEFT
(left: Expr, right: Expr)
| 235 | |
| 236 | /// Return a new expression with bitwise SHIFT LEFT |
| 237 | pub fn bitwise_shift_left(left: Expr, right: Expr) -> Expr { |
| 238 | Expr::BinaryExpr(BinaryExpr::new( |
| 239 | Box::new(left), |
| 240 | Operator::BitwiseShiftLeft, |
| 241 | Box::new(right), |
| 242 | )) |
| 243 | } |
| 244 | |
| 245 | /// Create an in_list expression |
| 246 | pub fn in_list(expr: Expr, list: Vec<Expr>, negated: bool) -> Expr { |
no test coverage detected
searching dependent graphs…