blob: e1fa594c5268fd0e90bdb6f9f57573625c60b072 [file] [log] [blame]
>>>
String type = status == 'OK'
? 'notices'
: status == 'NO' ? 'warnings' : status == 'BAD' ? 'errors' : '';
<<<
### TODO(1465): Should put condition after `=`.
String type =
status == 'OK'
? 'notices'
: status == 'NO'
? 'warnings'
: status == 'BAD'
? 'errors'
: '';