~~ conditionalExpression.operatorPosition: nextLine ~~
== should format ==
test? 1: 2;
test
    ? /* test */ 1: 2;
test ? 1
: 2;

[expect]
test ? 1 : 2;
test
    ? /* test */ 1
    : 2;
test
    ? 1
    : 2;
