blob: 0448d84102439d602840145b452adebd01701615 [file] [log] [blame]
>>>
class C {
int get currentAngleDigits => _currentSunAngleDeg < 0 ? 1 : _currentSunAngleDeg < 10 ? 2 : 3;
}
<<<
### TODO(1465): Should allow condition after the `=>`.
class C {
int get currentAngleDigits =>
_currentSunAngleDeg < 0
? 1
: _currentSunAngleDeg < 10
? 2
: 3;
}