blob: f9a4009baa5e057e8da2a1ead62519c12dd4b32d [file] [edit]
40 columns |
>>> Line comment before "var".
if (obj case // c
var x) {;}
<<< 3.7
if (obj
case // c
var x) {
;
}
>>> Line comment after "var".
if (obj case var // c
x) {;}
<<< 3.7
if (obj case var // c
x) {
;
}
<<< 3.8
if (obj
case var // c
x) {
;
}
>>> Line comment after variable (looks weird, but user should move comment).
if (obj case var x // c
) {;}
<<< 3.7
if (obj
case var x // c
) {
;
}
>>> Line comment after type.
if (obj case List<int> // c
x) {;}
<<< 3.7
if (obj
case List<int> // c
x) {
;
}
>>> Line comment after type, before long name.
if (obj
case final // c
thisIsReallyQuiteAVeryLongVariableName) {
;
}
<<< 3.7
if (obj case final // c
thisIsReallyQuiteAVeryLongVariableName) {
;
}
<<< 3.8
if (obj
case final // c
thisIsReallyQuiteAVeryLongVariableName) {
;
}