ast: fix IfExpr.str() (#14595)

yuyi 2022-06-02 15:28:31 +08:00 committed by Chewing_Bever
parent 34d30b0ee5
commit 47300ae03f
Signed by: Jef Roosens
GPG Key ID: B75D4F293C7052DB
1 changed files with 2 additions and 0 deletions

View File

@ -363,6 +363,8 @@ pub fn (x Expr) str() string {
}
if i < x.branches.len - 1 || !x.has_else {
parts << ' ${dollar}if ' + branch.cond.str() + ' { '
} else if x.has_else && i == x.branches.len - 1 {
parts << '{ '
}
for stmt in branch.stmts {
parts << stmt.str()