~~ doWhileStatement.bracePosition: maintain, lineWidth: 40 ~~
== should maintain the position for the brace position when on same line ==
do {
} while (true);

[expect]
do {
} while (true);

== should maintain the position for the brace position when on a new line ==
do
{
} while (true);

[expect]
do
{
} while (true);
