~~ doWhileStatement.nextControlFlowPosition: sameLine, lineWidth: 40 ~~
== should use the same line for the new control flow position ==
do {
    console.log("hello")
}
while (1 === 1);

[expect]
do {
    console.log("hello");
} while (1 === 1);
