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

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