~~ conditionalExpression.operatorPosition: maintain ~~
== should format ==
test? 1: 2;
test
    ? 1: 2;
test ? 1
: 2;

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