blob: d9460fa636d4d116cf690d417a58f9faa9057d76 [file] [log] [blame] [edit]
>>>
class FooConstructor {
FooConstructor(Object bar)
: foo = (bar == null)
? 'bar is null this is a very long string that causes a split'
: bar.myField;
}
<<<
class FooConstructor {
FooConstructor(Object bar)
: foo = (bar == null)
? 'bar is null this is a very long string that causes a split'
: bar.myField;
}