~~ ifStatement.nextControlFlowPosition: nextLine, lineWidth: 40 ~~
== should use the next line for the new control flow position ==
if (true) {
} else if (true) {
} else {
}

[expect]
if (true) {
}
else if (true) {
}
else {
}
