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

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

== should indent if the first line is a comment ==
test
    ? // comment
        test
    : // comment
        test

[expect]
test
    ? // comment
        test
    : // comment
        test;
