blob: 9b492109b7637b09c41915eb2c63fe4984559731 [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
) {
;
}