clauses property
The @if and @else if clauses.
The first clause whose expression evaluates to true will have its
statements executed. If no expression evaluates to true, lastClause
will be executed if it's not null.
Implementation
final List<IfClause> clauses;