Module Switch.Case

type t('M, 'T) = ('M, t'('M, 'T));
and t'('M, 'T) = {
  1. test: option(Expression.t('M, 'T)),
  2. consequent: list(Statement.t('M, 'T)),
  3. comments: option(Syntax.t('M, unit)),
};