Skip to content

Commit

Permalink
ups
Browse files Browse the repository at this point in the history
  • Loading branch information
nilehmann committed Dec 6, 2024
1 parent e9908a5 commit c545c46
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions crates/flux-middle/src/rty/expr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,7 @@ impl ESpan {
}
}

#[derive(
Debug, Clone, PartialEq, Eq, Hash, TyEncodable, TyDecodable, TypeFoldable, TypeVisitable,
)]
#[derive(Clone, PartialEq, Eq, Hash, TyEncodable, TyDecodable, TypeFoldable, TypeVisitable)]
pub enum BinOp {
Iff,
Imp,
Expand Down Expand Up @@ -1146,7 +1144,6 @@ mod pretty {
}
}
let e = if cx.simplify_exprs { self.simplify() } else { self.clone() };
// w!("{:?}@(", ^e.span())?;
match e.kind() {
ExprKind::Var(var) => w!("{:?}", var),
ExprKind::Local(local) => w!("{:?}", ^local),
Expand Down Expand Up @@ -1256,9 +1253,7 @@ mod pretty {
w!("{:?}", expr.as_ref().skip_binder())
})
}
}?;
// w!(")")
Ok(())
}
}
}

Expand Down

0 comments on commit c545c46

Please sign in to comment.