This commit is contained in:
mlokr 2024-07-19 13:02:00 +02:00
parent a1179f3320
commit 03aedb5d3f
No known key found for this signature in database
GPG key ID: DEA147DDEE644993

View file

@ -991,7 +991,10 @@ impl<'a> std::fmt::Display for Expr<'a> {
write!(f, " {op} ")?;
display_branch(f, right)?;
if matches!(op, TokenKind::Decl | TokenKind::Assign) {
if matches!(op, TokenKind::Decl | TokenKind::Assign)
&& INDENT.with(|idnf| !idnf.get()) == 0
&& !matches!(right, Self::Closure { .. })
{
write!(f, ";")?;
}