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