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

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

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

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