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

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

== should stay on next line ==
do {
    console.log("hello")
}
while (1 === 1);

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

== should keep comments before while ==
do {
    console.log("hello")
}
// good enough for now
while (1 === 1);

[expect]
do {
    console.log("hello");
}
while (
    // good enough for now
    1 === 1
);
