blob: 2ad4f725c3b0693693af8c3229545456639f9f5a [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'
: '';