Module Switch.Case

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