blob: f729d01e79f1dd7c14a9321294ed764d2f167198 [file] [log] [blame]
40 columns |
>>> Without value.
return ;
<<<
return;
>>> With value.
return value ;
<<<
return value;
>>> With split value.
return veryLongExpression + anotherLongOne;
<<<
return veryLongExpression +
anotherLongOne;