~~ binaryExpression.operatorPosition: maintain ~~
== should maintain the operator position ==
1 + 2 * 6 // test
    + 4 + // asdf
    7 * 6 + 4
    + 5;

[expect]
1 + 2 * 6 // test
    + 4 + // asdf
    7 * 6 + 4
    + 5;

== should maintain for logical operators ==
1 && 2 || 6 // test
    && 4 || // asdf
    7 && 6 || 4
    && 5;

[expect]
1 && 2 || 6 // test
        && 4 || // asdf
    7 && 6 || 4
        && 5;
