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

[expect]
while (true)
{
}

== should use the next line for the brace position when hanging ==
while (someCondition && otherOtherOtherThing)
{
}

[expect]
while (someCondition
    && otherOtherOtherThing)
{
}
