(expr: &Expr)
| 101 | } |
| 102 | |
| 103 | fn roundtrip_expr(expr: &Expr) -> Expr { |
| 104 | let bytes = expr.to_bytes().unwrap(); |
| 105 | Expr::from_bytes(&bytes).unwrap() |
| 106 | } |
| 107 | |
| 108 | #[test] |
| 109 | fn exact_roundtrip_linearized_binary_expr() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…