Else constructor

Else(
  1. List<Conditional> then
)

If none of the proceding Iff or ElseIf are executed, then then will be executed.

Implementation

Else(List<Conditional> then) : super(Const(1), then);