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

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

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

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