(&mut self, mut expr: Expr)
| 55 | |
| 56 | impl PlFold for IdEraser { |
| 57 | fn fold_expr(&mut self, mut expr: Expr) -> Result<Expr> { |
| 58 | expr.kind = self.fold_expr_kind(expr.kind)?; |
| 59 | expr.id = None; |
| 60 | expr.target_id = None; |
| 61 | Ok(expr) |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | fn parse_and_resolve(query: &str) -> Result<Expr, Errors> { |
no test coverage detected