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