mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
vfmt: print or { }
on a single line
This commit is contained in:
parent
73771b741c
commit
4403c76406
@ -1073,9 +1073,13 @@ pub fn (mut f Fmt) or_expr(or_block ast.OrExpr) {
|
||||
match or_block.kind {
|
||||
.absent {}
|
||||
.block {
|
||||
f.writeln(' or {')
|
||||
f.stmts(or_block.stmts)
|
||||
f.write('}')
|
||||
if or_block.stmts.len == 0 {
|
||||
f.write(' or { }')
|
||||
} else {
|
||||
f.writeln(' or {')
|
||||
f.stmts(or_block.stmts)
|
||||
f.write('}')
|
||||
}
|
||||
}
|
||||
.propagate {
|
||||
f.write('?')
|
||||
|
Loading…
Reference in New Issue
Block a user