Sign in
dart
/
dart_style
/
8c0e44e0fbce0f625a7cbca479886c1ea0f583d8
/
.
/
test
/
tall
/
statement
/
return.stmt
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
;