~~ forInStatement.singleBodyPosition: sameLine ~~
== should keep on the same line ==
for (const t in other) a;

[expect]
for (const t in other) a;

== should move to the same line ==
for (const t in other)
    a;

[expect]
for (const t in other) a;

== should keep on the next line when using braces ==
for (const t in other) {
    a;
}

[expect]
for (const t in other) {
    a;
}
