Remove accideental dbg!()

This commit is contained in:
Joshua Warner 2024-12-03 19:44:15 -08:00
parent f833ac9a6b
commit e22e37a9c1
No known key found for this signature in database
GPG key ID: 89AD497003F93FDD

View file

@ -653,7 +653,7 @@ fn parse_stmt_operator_chain<'a>(
..
},
state,
)) if matches!(dbg!(expr_state.expr.value), Expr::Tag(..)) => {
)) if matches!(expr_state.expr.value, Expr::Tag(..)) => {
return parse_ability_def(expr_state, state, arena, implements, call_min_indent)
.map(|(td, s)| (MadeProgress, Stmt::TypeDef(td), s));
}