~~ forInStatement.singleBodyPosition: maintain ~~
== should keep on a single line ==
for (const t in other) a;

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

== should keep on the next line ==
for (const t in other)
    a;

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