~~ whileStatement.bracePosition: sameLine, lineWidth: 40, whileStatement.preferHanging: true ~~
== should use the same line for the brace position ==
while (true)
{
}

[expect]
while (true) {
}

== should use the same line for the brace position when hanging ==
while (someReallyReallyReally && longLongLongLong) {
}

[expect]
while (someReallyReallyReally
    && longLongLongLong) {
}
