Make dbg parse strictly as an Apply

This is important in order to fix some formatting bugs found in fuzzing
This commit is contained in:
Joshua Warner 2024-11-24 13:37:28 -08:00
parent 22423ca98b
commit b4fdb0a4c2
No known key found for this signature in database
GPG key ID: 89AD497003F93FDD
14 changed files with 122 additions and 156 deletions

View file

@ -1465,6 +1465,7 @@ impl<'a> Normalize<'a> for EExpect<'a> {
EExpect::Continuation(arena.alloc(inner_err.normalize(arena)), Position::zero())
}
EExpect::IndentCondition(_) => EExpect::IndentCondition(Position::zero()),
EExpect::DbgArity(_) => EExpect::DbgArity(Position::zero()),
}
}
}