~~ forOfStatement.singleBodyPosition: nextLine ~~
== should move to the next 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;
}
