blob: 05a3238029b9684e8718fa08d8475b0244ee2c36 [file] [log] [blame]
40 columns |
>>> After operator.
if (obj case <= // c
someConstant + anotherLongConstant) {;}
<<<
if (obj
case <= // c
someConstant +
anotherLongConstant) {
;
}
>>> After operand.
if (obj case <= someConstant + anotherLongConstant // c
) {;}
<<<
if (obj
case <= someConstant +
anotherLongConstant // c
) {
;
}