~~ forOfStatement.bracePosition: maintain, lineWidth: 40, forOfStatement.preferHanging: true ~~
== should maintain the position for the brace position when on same line ==
for ( const t of  test) {
}

[expect]
for (const t of test) {
}

== should maintain the position for the brace position when on a new line ==
for (let t of asdf)
{
}

[expect]
for (let t of asdf)
{
}

== should maintain the position for the brace position when hanging and on the same line ==
for (let hereIsSome of longTextToGoBeyondLineWidth) {
}

[expect]
for (let hereIsSome
    of longTextToGoBeyondLineWidth) {
}

== should maintain the position for the brace position when hanging and on the next line ==
for (let hereIsSome of longTextToGoBeyondLineWidth)
{
}

[expect]
for (let hereIsSome
    of longTextToGoBeyondLineWidth)
{
}
