blob: dc7a765b3c75619a589fe501aadf3b7c7e37cd4d [file] [log] [blame] [edit]
40 columns |
>>> No split after "var".
if (obj case var thisIsReallyQuiteAVeryLongVariableName) {;}
<<<
if (obj
case var thisIsReallyQuiteAVeryLongVariableName) {
;
}
>>> No split after "final".
if (obj case final thisIsReallyQuiteAVeryLongVariableName) {;}
<<<
if (obj
case final thisIsReallyQuiteAVeryLongVariableName) {
;
}
>>> No split between "final" and type.
if (obj case final ThisIsReallyQuiteAVeryLongTypeName variable) {;}
<<<
if (obj
case final ThisIsReallyQuiteAVeryLongTypeName
variable) {
;
}
>>> Split between type and name.
if (obj case SomeLongTypeName longVariableName) {
;
}
<<<
if (obj
case SomeLongTypeName
longVariableName) {
;
}