blob: 939d13473563d1c998e8a9e27659c08394472e83 [file] [log] [blame]
>>>
class C {
int get currentAngleDigits => _currentSunAngleDeg < 0 ? 1 : _currentSunAngleDeg < 10 ? 2 : 3;
}
<<<
class C {
int get currentAngleDigits => _currentSunAngleDeg < 0
? 1
: _currentSunAngleDeg < 10
? 2
: 3;
}